Fix build

This commit is contained in:
sin 2015-01-26 16:14:45 +00:00
parent 2334c04952
commit 63d7f29bd9
1 changed files with 2 additions and 2 deletions

4
tar.c
View File

@ -272,14 +272,14 @@ static void
usage(void)
{
eprintf("usage: tar [-f tarfile] [-C dir] -j|z -x[m]|t\n"
" tar [-f tarfile] [-C dir] -c dir\n"
" tar [-f tarfile] [-C dir] -c dir\n");
}
int
main(int argc, char *argv[])
{
struct stat st;
char *file = NULL, *dir = ".", *ap;
char *file = NULL, *dir = ".";
char mode = '\0';
FILE *fp;