1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-03 09:00:21 +00:00

Properly prototype C function usage().

Sync usage() with the manual page: s/file/snapshot_name/g.
This commit is contained in:
Tom Rhodes 2003-10-29 21:21:09 +00:00
parent e8c321c92f
commit 91b6ac7c44
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121706

View File

@ -49,11 +49,13 @@
#include <sysexits.h>
#include <unistd.h>
void usage(void);
void
usage()
{
fprintf(stderr, "usage: mksnap_ffs mountpoint file\n");
fprintf(stderr, "usage: mksnap_ffs mountpoint snapshot_name\n");
exit(EX_USAGE);
}