Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4262162
)
debugfs: Print the progname instead of argv[0] in error message
author
Manish Katiyar
<mkatiyar@gmail.com>
Sat, 23 Aug 2008 16:58:05 +0000
(22:28 +0530)
committer
Theodore Ts'o
<tytso@mit.edu>
Sun, 24 Aug 2008 21:29:33 +0000
(17:29 -0400)
Trivial fix to print the progname instead of argv[0] in error message.
Signed-off-by: "Manish Katiyar" <mkatiyar@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
debugfs/debugfs.c
patch
|
blob
|
history
diff --git
a/debugfs/debugfs.c
b/debugfs/debugfs.c
index
ab40de8
..
935df81
100644
(file)
--- a/
debugfs/debugfs.c
+++ b/
debugfs/debugfs.c
@@
-1514,7
+1514,7
@@
try_again:
if (retval == EXT2_ET_DIR_NO_SPACE) {
retval = ext2fs_expand_dir(current_fs, parent);
if (retval) {
- com_err(
"argv[0]"
, retval, "while expanding directory");
+ com_err(
argv[0]
, retval, "while expanding directory");
return;
}
goto try_again;