Fix printing of invalid flags argument of mount syscall

* mount.c (SYS_FUNC(mount)): Print 1st argument using printflags_long.
This commit is contained in:
Дмитрий Левин 2016-05-16 23:04:54 +00:00
parent 1168114879
commit 412ec9480c

View File

@ -74,7 +74,7 @@ SYS_FUNC(mount)
tprints("|");
}
if (flags || !old_magic)
printflags(mount_flags, flags, "MS_???");
printflags_long(mount_flags, flags, "MS_???");
tprints(", ");
if (ignore_data)