Audit sponge(1)

Just a little usage()-fix. Mark it as audited in README.
This commit is contained in:
FRIGN
2015-03-01 23:42:16 +01:00
parent 0c9b52ef9b
commit 80d89c400f
2 changed files with 2 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
static void
usage(void)
{
eprintf("usage: sponge file\n");
eprintf("usage: %s file\n", argv0);
}
int
@@ -25,7 +25,6 @@ main(int argc, char *argv[])
if (!(tmpfp = tmpfile()))
eprintf("tmpfile:");
concat(stdin, "<stdin>", tmpfp, "<tmpfile>");
rewind(tmpfp);