From: Glenn L McGrath Date: Fri, 3 Oct 2003 08:28:59 +0000 (-0000) Subject: Patch by Rob Landley, fix warning X-Git-Tag: 1_00_pre4~146 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8ac86e33a279192cc94be9fc5611e797216f523c;p=oweals%2Fbusybox.git Patch by Rob Landley, fix warning --- diff --git a/scripts/config/confdata.c b/scripts/config/confdata.c index c6a2864dc..768f771d0 100644 --- a/scripts/config/confdata.c +++ b/scripts/config/confdata.c @@ -342,13 +342,13 @@ int conf_write(const char *name) if (out_h) fprintf(out_h, "#undef %s\n", sym->name); break; -#if 0 case mod: +#if 0 fprintf(out, "%s=m\n", sym->name); if (out_h) fprintf(out_h, "#define %s_MODULE 1\n", sym->name); - break; #endif + break; case yes: fprintf(out, "%s=y\n", sym->name); if (out_h)