From b416f61c3e9e7d29ae823b4d440d53f207e3e65a Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Sat, 10 Mar 2018 05:38:39 +0100 Subject: [PATCH] mount: use print_xlat for printing MS_MGC_VAL * mount.c (SYS_FUNC(mount)): Use print_xlat for printing MS_MGC_VAL named constant. --- mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount.c b/mount.c index 7df0e68e..4d09804e 100644 --- a/mount.c +++ b/mount.c @@ -70,7 +70,7 @@ SYS_FUNC(mount) tprints(", "); if (old_magic) { - tprints("MS_MGC_VAL"); + print_xlat(MS_MGC_VAL); if (flags) tprints("|"); } -- 2.50.1