Message ID | 1392864546-545-4-git-send-email-guihc.fnst@cn.fujitsu.com (mailing list archive) |
---|---|
State | Under Review, archived |
Headers | show |
diff --git a/utils.c b/utils.c index 12ed2f4..9408885 100644 --- a/utils.c +++ b/utils.c @@ -2206,8 +2206,6 @@ again: free(fsargs); goto again; } else if (ret < 0) { - printf("ERROR: scan_fsid ioctl failed - %s\n", - strerror(e)); ret = -e; goto out; }
If the new version of btrfs-file-show fails, it will try to use the old version. But before that, an error msg of the failed ioctl shows up which causes xfstests case btrfs/006 to get a mismatch output. I think we can just remove the error msg since the btrfs-file-show still works with right outputs. Showing an error msg together with the right result is really awkward. Signed-off-by: Gui Hecheng <guihc.fnst@cn.fujitsu.com> --- utils.c | 2 -- 1 file changed, 2 deletions(-)