]> git.wh0rd.org - fontconfig.git/commitdiff
Fix trivial bugs in edit-sgml.c
authorBehdad Esfahbod <behdad@behdad.org>
Mon, 5 Nov 2007 20:29:03 +0000 (15:29 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Mon, 5 Nov 2007 20:29:03 +0000 (15:29 -0500)
doc/edit-sgml.c

index 067626c90fb207f08a218b5ed4e74ce2472498ab..02f4a46b2eb25f96fac70cf3e942c618bce14b06 100644 (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)
     {