At this stage of engine shutdown, the eina log domain has been removed
authorChris Michael <devilhorns@comcast.net>
Fri, 24 May 2013 20:36:05 +0000 (21:36 +0100)
committerChris Michael <devilhorns@comcast.net>
Fri, 24 May 2013 20:36:05 +0000 (21:36 +0100)
and is not valid, so don't use ERR to print a message.

Signed-off-by: Chris Michael <devilhorns@comcast.net>
src/modules/evas/engines/gl_common/evas_gl_core.c

index bea210a..be6a4da 100644 (file)
@@ -1389,11 +1389,7 @@ void
 evgl_engine_shutdown(void *eng_data)
 {
    // Check if engine is valid
-   if (!evgl_engine)
-     {
-        ERR("EVGL Engine not valid!");
-        return;
-     }
+   if (!evgl_engine) return;
 
    // Log
    eina_log_domain_unregister(_evas_gl_log_dom);