summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-05-27 16:24:46 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-05-27 16:24:46 +0100
commitc0e7f3a9c373ef34f667ac3989a48abd7d6c8d0e (patch)
treea140524a68649bc1e4d0fac19a95017fca24459f
parent4aa29841f7b234c0b428dd46b124226fd69bb91f (diff)
downloadefl-c0e7f3a9c373ef34f667ac3989a48abd7d6c8d0e.tar.gz
elput - fix #else path for minor
-rw-r--r--src/lib/elput/elput_logind.c2
1 files changed, 1 insertions, 1 deletions
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;