debugfs: Print the progname instead of argv[0] in error message

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>
bitmap-optimize
Manish Katiyar 2008-08-23 22:28:05 +05:30 committed by Theodore Ts'o
parent 4262162ac2
commit 73b0542596
1 changed files with 1 additions and 1 deletions

View File

@ -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;