diff --git a/ui/spice-core.c b/ui/spice-core.c index 61db3c18b3249e0d635ee5c1333db9f4c94a3265..da0505434a026efea919c4a25a7b9b772be77f83 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -833,9 +833,11 @@ void qemu_spice_init(void) "incompatible with -spice port/tls-port"); exit(1); } - if (egl_rendernode_init() == 0) { - display_opengl = 1; + if (egl_rendernode_init() != 0) { + error_report("Failed to initialize EGL render node for SPICE GL"); + exit(1); } + display_opengl = 1; } #endif }