From: Pavel Charvat Date: Tue, 14 Jan 2014 08:00:05 +0000 (+0100) Subject: LibUCW: Fixed a stupid typo in the UCW_DIE_BY_ABORT switch. X-Git-Tag: v5.99~35 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=2f022a488e18b369820934c2ba54525e0c4469ee;p=libucw.git LibUCW: Fixed a stupid typo in the UCW_DIE_BY_ABORT switch. --- diff --git a/ucw/log.c b/ucw/log.c index 20c6d63a..df6eae05 100644 --- a/ucw/log.c +++ b/ucw/log.c @@ -337,7 +337,7 @@ do_die(void) #ifdef DEBUG_DIE_BY_ABORT abort(); #else - const char *env = getenv("CONFIG_UCW_ENV_VAR_DIE_BY_ABORT"); + const char *env = getenv(CONFIG_UCW_ENV_VAR_DIE_BY_ABORT); if (env && *env) abort(); exit(1);