Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-10-03 12:28:59 +0400
committerGlenn L McGrath <bug1@ihug.co.nz>2003-10-03 12:28:59 +0400
commit8ac86e33a279192cc94be9fc5611e797216f523c (patch)
treeeca54d7e694e7b8ebc6beaeab5a6b8a503cde8e4 /scripts
parent4a77c781ef9a599ccff0b9736f96ec3b1cc3b50e (diff)
Patch by Rob Landley, fix warning
Diffstat (limited to 'scripts')
-rw-r--r--scripts/config/confdata.c4
1 files changed, 2 insertions, 2 deletions
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)