From 8d31f146ed19c141108649538c1d6a8f6753d45e Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 1 Feb 2018 16:52:14 +0100 Subject: [PATCH] libmount: fix debug message Signed-off-by: Karel Zak --- libmount/src/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmount/src/fs.c b/libmount/src/fs.c index 14f13b1f4..a801d8c1d 100644 --- a/libmount/src/fs.c +++ b/libmount/src/fs.c @@ -1471,7 +1471,7 @@ int mnt_fs_print_debug(struct libmnt_fs *fs, FILE *file) { if (!fs || !file) return -EINVAL; - fprintf(file, "------ fs\n"); + fprintf(file, "------ fs:\n"); fprintf(file, "source: %s\n", mnt_fs_get_source(fs)); fprintf(file, "target: %s\n", mnt_fs_get_target(fs)); fprintf(file, "fstype: %s\n", mnt_fs_get_fstype(fs));