cdown / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone
05ad79
From c817652429d4326bb43a8d975611927170447805 Mon Sep 17 00:00:00 2001
05ad79
From: Karel Zak <kzak@redhat.com>
05ad79
Date: Thu, 1 Feb 2018 16:52:14 +0100
05ad79
Subject: [PATCH] libmount: fix debug message
05ad79
05ad79
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1534893
05ad79
Upstream: http://github.com/karelzak/util-linux/commit/b058f473d175450c48a65031f1abc8d8b90b2b7b
05ad79
Signed-off-by: Karel Zak <kzak@redhat.com>
05ad79
---
05ad79
 libmount/src/fs.c | 2 +-
05ad79
 1 file changed, 1 insertion(+), 1 deletion(-)
05ad79
05ad79
diff --git a/libmount/src/fs.c b/libmount/src/fs.c
05ad79
index e46ee0c0e..e5c38c1b6 100644
05ad79
--- a/libmount/src/fs.c
05ad79
+++ b/libmount/src/fs.c
05ad79
@@ -1451,7 +1451,7 @@ int mnt_fs_print_debug(struct libmnt_fs *fs, FILE *file)
05ad79
 {
05ad79
 	if (!fs || !file)
05ad79
 		return -EINVAL;
05ad79
-	fprintf(file, "------ fs\n");
05ad79
+	fprintf(file, "------ fs:\n");
05ad79
 	fprintf(file, "source: %s\n", mnt_fs_get_source(fs));
05ad79
 	fprintf(file, "target: %s\n", mnt_fs_get_target(fs));
05ad79
 	fprintf(file, "fstype: %s\n", mnt_fs_get_fstype(fs));
05ad79
-- 
05ad79
2.14.3
05ad79