commit | 2d1ff48f9d721318e026ccb9e0ac0ddfc3495f0f | [log] [tgz] |
---|---|---|
author | Darrick J. Wong <djwong@kernel.org> | Tue Mar 14 10:40:59 2023 -0700 |
committer | Darrick J. Wong <djwong@kernel.org> | Thu Mar 16 11:35:17 2023 -0700 |
tree | 1d7ada38ab02b12f23277d0aa98717575f0bde95 | |
parent | 7bed1d81dad396835580270328ae76ca81742636 [diff] |
xfs_io: print path in path_print Actually print the path string once we've bothered to construct it into a string buffer. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
diff --git a/io/parent.c b/io/parent.c index a6f3fa0..b18e02c 100644 --- a/io/parent.c +++ b/io/parent.c
@@ -87,6 +87,8 @@ ret = path_list_to_string(path, buf + ret, len - ret); if (ret < 0) return ret; + + printf("%s\n", buf); return 0; }