diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-12-07 10:04:24 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-12-07 10:04:24 +0000 |
commit | d59bb9d2896476252a4daa8e6dd8ed1125bf5f45 (patch) | |
tree | ab6fa9ea14e429b41fc19638495feb30a6bd1440 /lib/helper.c | |
parent | 6498819f7c2c86df07efa02e27c1bc1c8ce0076a (diff) | |
download | libfuse-d59bb9d2896476252a4daa8e6dd8ed1125bf5f45.tar.gz |
ducumentation fixes in fuse.h
Diffstat (limited to 'lib/helper.c')
-rw-r--r-- | lib/helper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/helper.c b/lib/helper.c index fc17973..5f7f1f5 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -47,7 +47,7 @@ static void usage(const char *progname) static void invalid_option(const char *argv[], int argctr) { fprintf(stderr, "fuse: invalid option: %s\n\n", argv[argctr]); - fprintf(stderr, "see '%s -h' for usage\n", argv[0]); + fprintf(stderr, "see `%s -h' for usage\n", argv[0]); } static void exit_handler() @@ -174,7 +174,7 @@ static int fuse_parse_cmdline(int argc, const char *argv[], char **kernel_opts, case 'o': if (argctr + 1 == argc || argv[argctr+1][0] == '-') { fprintf(stderr, "missing option after -o\n"); - fprintf(stderr, "see '%s -h' for usage\n", argv[0]); + fprintf(stderr, "see `%s -h' for usage\n", argv[0]); goto err; } argctr ++; @@ -240,7 +240,7 @@ static int fuse_parse_cmdline(int argc, const char *argv[], char **kernel_opts, if (*mountpoint == NULL) { fprintf(stderr, "missing mountpoint\n"); - fprintf(stderr, "see '%s -h' for usage\n", argv[0]); + fprintf(stderr, "see `%s -h' for usage\n", argv[0]); goto err; } return 0; |