cleanup code: remove superfluous comma at end of enumeration

declaration, remove useless "break" after exit(3) call, and add a
missing va_end(3) call.
This commit is contained in:
Ralf S. Engelschall 2007-02-04 20:52:57 +00:00
parent 865b0cf06c
commit 3181f5556f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166504

View File

@ -77,7 +77,7 @@ enum {
RV_OK = 0,
RV_USAGE = 1,
RV_NOTFOUND = 2,
RV_NOENUM = 3,
RV_NOENUM = 3
};
static struct getentdb {
@ -109,7 +109,6 @@ main(int argc, char *argv[])
for (curdb = databases; curdb->name != NULL; curdb++) {
if (strcmp(curdb->name, argv[1]) == 0) {
exit(curdb->callback(argc, argv));
break;
}
}
fprintf(stderr, "Unknown database: %s\n", argv[1]);
@ -178,6 +177,7 @@ printfmtstrings(char *strings[], const char *prefix, const char *sep,
curpref = sep;
}
printf("\n");
va_end(ap);
}
/*