raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c0e7f3a9c373ef34f667ac3989a48abd7d6c8d0e
commit c0e7f3a9c373ef34f667ac3989a48abd7d6c8d0e Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Wed May 27 16:24:46 2020 +0100 elput - fix #else path for minor --- src/lib/elput/elput_logind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elput/elput_logind.c b/src/lib/elput/elput_logind.c index 02e53517f7..09aeece0ec 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; --