From: Carsten Haitzler (Rasterman) Date: Wed, 27 May 2020 15:24:46 +0000 (+0100) Subject: elput - fix #else path for minor X-Git-Tag: accepted/tizen/unified/20200604.164556~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85db2ec615cab3a840e676f9d861ce09854a3858;p=platform%2Fupstream%2Fefl.git elput - fix #else path for minor --- diff --git a/src/lib/elput/elput_logind.c b/src/lib/elput/elput_logind.c index 02e5351..09aeece 100644 --- a/src/lib/elput/elput_logind.c +++ b/src/lib/elput/elput_logind.c @@ -11,7 +11,7 @@ # ifdef minor # define MINOR(x) minor(x) # else -# define MAJOR(x) (((x) & 0xff) | (((x) >> 12) & ~0xff)) +# define MINOR(x) (((x) & 0xff) | (((x) >> 12) & ~0xff)) # endif static Eina_Module *_libsystemd = NULL;