fix coding rule 42/89542/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Mon, 26 Sep 2016 02:51:35 +0000 (11:51 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Mon, 26 Sep 2016 02:51:35 +0000 (11:51 +0900)
Change-Id: I7cf7fabd2f88e108f8164028e50f0865ca3aab24

src/tbm_surface_internal.c

index 39ebb28..4dafc86 100644 (file)
@@ -1394,9 +1394,8 @@ _tbm_surface_internal_get_debug_data(tbm_surface_h surface, char *key)
 
        if (!LIST_IS_EMPTY(&surface->debug_data_list)) {
                LIST_FOR_EACH_ENTRY_SAFE(old_data, tmp, &surface->debug_data_list, item_link) {
-                       if (!strcmp(old_data->key, key)) {
+                       if (!strcmp(old_data->key, key))
                                return old_data->value;
-                       }
                }
        }