Fix trivial bugs in edit-sgml.c

This commit is contained in:
Behdad Esfahbod 2007-11-05 15:29:03 -05:00
parent de1faa42d1
commit 811995b79d
1 changed files with 2 additions and 1 deletions

View File

@ -263,6 +263,7 @@ Getc (FILE *f, int *linep)
int c = getc (f);
if (c == '\n')
++(*linep);
return c;
}
static void
@ -524,7 +525,7 @@ main (int argc, char **argv)
int iline, oline;
if (!argv[1])
Bail ("usage: %s <template.sgml>", 0, argv[0]);
Bail ("usage: %*s <template.sgml>", 0, argv[0]);
f = fopen (argv[1], "r");
if (!f)
{