mount: use print_xlat for printing MS_MGC_VAL
authorEugene Syromyatnikov <evgsyr@gmail.com>
Sat, 10 Mar 2018 04:38:39 +0000 (05:38 +0100)
committerEugene Syromyatnikov <evgsyr@gmail.com>
Thu, 12 Apr 2018 22:25:13 +0000 (00:25 +0200)
* mount.c (SYS_FUNC(mount)): Use print_xlat for printing MS_MGC_VAL
named constant.

mount.c

diff --git a/mount.c b/mount.c
index 7df0e68e18fb60105782933ef5985b3295c68868..4d09804e974929b4bd27df791b3dbc0574c07afc 100644 (file)
--- 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("|");
        }