fsck: use printf for message, not bb_info_msg

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/e2fsprogs/fsck.c b/e2fsprogs/fsck.c
index 8d89179..987d975 100644
--- a/e2fsprogs/fsck.c
+++ b/e2fsprogs/fsck.c
@@ -602,7 +602,7 @@
 	if (strcmp(fs->type, "auto") != 0) {
 		type = fs->type;
 		if (G.verbose > 2)
-			bb_info_msg("using filesystem type '%s' %s",
+			printf("using filesystem type '%s' %s\n",
 					type, "from fstab");
 	} else if (G.fstype
 	 && (G.fstype[0] != 'n' || G.fstype[1] != 'o') /* != "no" */
@@ -612,12 +612,12 @@
 	) {
 		type = G.fstype;
 		if (G.verbose > 2)
-			bb_info_msg("using filesystem type '%s' %s",
+			printf("using filesystem type '%s' %s\n",
 					type, "from -t");
 	} else {
 		type = "auto";
 		if (G.verbose > 2)
-			bb_info_msg("using filesystem type '%s' %s",
+			printf("using filesystem type '%s' %s\n",
 					type, "(default)");
 	}