From: Jonathan Neuschäfer Date: Mon, 14 Nov 2011 05:49:52 +0000 (+0100) Subject: options.c: rewrite two #ifndefs as one #if X-Git-Tag: release-0.20~46^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0bd10bf6d49e2b196d8f246e13028e9242c62bb3;p=ncmpc.git options.c: rewrite two #ifndefs as one #if --- diff --git a/src/options.c b/src/options.c index 322b66d..f7044cc 100644 --- a/src/options.c +++ b/src/options.c @@ -264,14 +264,12 @@ handle_option(int c, const char *arg) g_free(options.key_file); options.key_file = g_strdup(arg); break; -#ifndef NDEBUG -#ifndef NCMPC_MINI +#if !defined(NDEBUG) && !defined(NCMPC_MINI) case 'K': /* --dump-keys */ read_configuration(); write_key_bindings(stdout, KEYDEF_WRITE_ALL | KEYDEF_COMMENT_ALL); exit(EXIT_SUCCESS); break; -#endif #endif default: fprintf(stderr,"Unknown Option %c = %s\n", c, arg);