X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Ffmtdump.c;h=fc94247c1880021d8e8147fc21121a35ec361685;hb=ac2834b4173be67edde1334819d3d3c16e4d484e;hp=923a46e99fa90550926daaf8fbd4f2d450c9ed69;hpb=f51956be123db66b00138f80464d06f030dbb88d;p=mmh diff --git a/uip/fmtdump.c b/uip/fmtdump.c index 923a46e..fc94247 100644 --- a/uip/fmtdump.c +++ b/uip/fmtdump.c @@ -15,7 +15,7 @@ static struct swit switches[] = { #define FORMSW 0 { "form formatfile", 0 }, #define VERSIONSW 1 - { "version", 0 }, + { "Version", 0 }, #define HELPSW 2 { "help", 0 }, { NULL, 0 } @@ -42,9 +42,8 @@ static void litputc(char); int main(int argc, char **argv) { - int ncomps; char *cp, *form = NULL; - char buf[BUFSIZ], *nfs, **argp, **arguments; + char buf[BUFSIZ], *fmtstr, **argp, **arguments; struct format *fmt; #ifdef LOCALE @@ -93,8 +92,8 @@ main(int argc, char **argv) /* ** Get new format string. Must be before chdir(). */ - nfs = new_fs(form, FORMAT); - ncomps = fmt_compile(nfs, &fmt); + fmtstr = new_fs(form, FORMAT); + fmt_compile(fmtstr, &fmt); fmt_dump(fmt); done(0);