From: Eugene Syromyatnikov Date: Sat, 10 Mar 2018 04:38:39 +0000 (+0100) Subject: mount: use print_xlat for printing MS_MGC_VAL X-Git-Tag: v4.23~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b416f61c3e9e7d29ae823b4d440d53f207e3e65a;p=strace mount: use print_xlat for printing MS_MGC_VAL * mount.c (SYS_FUNC(mount)): Use print_xlat for printing MS_MGC_VAL named constant. --- 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("|"); }