ecore_buffer: Fix warning that returned value at void function.
authorSeunghun Lee <shiin.lee@samsung.com>
Thu, 19 Apr 2018 12:51:25 +0000 (21:51 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Fri, 20 Apr 2018 08:38:45 +0000 (17:38 +0900)
Change-Id: I1f4b4c3fb962d6cdf0c50f8cbbea6c90e2253238

src/bin/ecore_buffer/bq_mgr.c

index 58d7e7a..ff9b953 100644 (file)
@@ -149,8 +149,8 @@ bq_object_unref(Bq_Object *o)
 static void
 bq_object_free(Bq_Object *o)
 {
-   if (!o) return 0;
-   if (o->deleted) return 0;
+   if (!o) return;
+   if (o->deleted) return;
 
    o->deleted = EINA_TRUE;