Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f8b775
)
b 2295
author
youfeng
<youfeng>
Tue, 9 Mar 2004 02:37:28 +0000
(
02:37
+0000)
committer
youfeng
<youfeng>
Tue, 9 Mar 2004 02:37:28 +0000
(
02:37
+0000)
r Jacob
add a missing arg to printf, make the program exit with 1 on args error
lustre/utils/llmount.c
patch
|
blob
|
history
diff --git
a/lustre/utils/llmount.c
b/lustre/utils/llmount.c
index
87b64d3
..
26bb579
100644
(file)
--- a/
lustre/utils/llmount.c
+++ b/
lustre/utils/llmount.c
@@
-354,8
+354,8
@@
main(int argc, char * const argv[])
if (argc < i) {
printf("Too few args!\n");
- printf("Usage: %s <source> <target> [-v] [-n] [-o ...]\n");
- exit(
-
1);
+ printf("Usage: %s <source> <target> [-v] [-n] [-o ...]\n"
, argv[0]
);
+ exit(1);
}
if (verbose)