From: Seunghun Lee Date: Mon, 9 Sep 2024 04:58:37 +0000 (+0900) Subject: e_comp_wl: Fix wrong return value X-Git-Tag: accepted/tizen/unified/20240910.112405~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93669b470b32031b6ffd190eb13dd8840226b9a6;p=platform%2Fupstream%2Fenlightenment.git e_comp_wl: Fix wrong return value Change-Id: If2870875fafdc4646f1660f1ad3045113d0d4d03 --- diff --git a/src/bin/server/e_comp_wl.c b/src/bin/server/e_comp_wl.c index a3610219f8..d95340a78c 100644 --- a/src/bin/server/e_comp_wl.c +++ b/src/bin/server/e_comp_wl.c @@ -3570,7 +3570,7 @@ _e_comp_wl_display_create(void) if (!(comp = E_NEW(E_Comp_Data, 1))) { ERR("Could not create compositor data: %m"); - return EINA_FALSE; + return NULL; } comp_wl = &comp->base;