diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-10-13 10:57:34 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-10-13 10:57:34 +0300 |
commit | db3b02609b1145abf3ad6756a0a26d8e0690560d (patch) | |
tree | 87c02f172c64ffa51220f2b53d18743df9376bbb | |
parent | 573d25ff65f55009607ab14e8a28317dd4055715 (diff) | |
download | util-linux-old-db3b02609b1145abf3ad6756a0a26d8e0690560d.tar.gz |
logger: fix C macro
-rw-r--r-- | misc-utils/logger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc-utils/logger.c b/misc-utils/logger.c index a6d196df..b9d893db 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -56,7 +56,7 @@ #define LOG_PERROR LOG_CONS #endif -#if ! HAVE_SYSLOG_NAMES +#ifndef HAVE_SYSLOG_NAMES typedef struct _CODE { char *c_name; int c_val; |