aboutsummaryrefslogtreecommitdiff
path: root/bin/ls
diff options
context:
space:
mode:
authorAllan Jude <allanjude@FreeBSD.org>2015-07-24 20:20:59 +0000
committerAllan Jude <allanjude@FreeBSD.org>2015-07-24 20:20:59 +0000
commite9eed90c39e0711014666311aeac7762f92cd150 (patch)
tree52fc2770114df2c2f33fc12f19fd5ffe48f1de45 /bin/ls
parentd8b56c8eabcc2c90df56390fad1531f0aae236ac (diff)
downloadsrc-e9eed90c39e0711014666311aeac7762f92cd150.tar.gz
src-e9eed90c39e0711014666311aeac7762f92cd150.zip
Notes
Diffstat (limited to 'bin/ls')
-rw-r--r--bin/ls/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c
index 2fbaea5305c9..70f53ba70663 100644
--- a/bin/ls/print.c
+++ b/bin/ls/print.c
@@ -192,7 +192,7 @@ printlong(const DISPLAY *dp)
if (f_numericonly) {
xo_emit("{t:mode/%s}{e:mode_octal/%03o} {t:links/%*u} {td:user/%-*s}{e:user/%ju} {td:group/%-*s}{e:group/%ju} ",
buf, (int) sp->st_mode & ALLPERMS, dp->s_nlink, sp->st_nlink,
- dp->s_user, np->user, sp->st_uid, dp->s_group, np->group, sp->st_gid);
+ dp->s_user, np->user, (uintmax_t)sp->st_uid, dp->s_group, np->group, (uintmax_t)sp->st_gid);
} else {
xo_emit("{t:mode/%s}{e:mode_octal/%03o} {t:links/%*u} {t:user/%-*s} {t:group/%-*s} ",
buf, (int) sp->st_mode & ALLPERMS, dp->s_nlink, sp->st_nlink,
@@ -486,7 +486,7 @@ printtype(u_int mode)
xo_emit("{D:=}{e:type/socket}");
return (1);
case S_IFWHT:
- xo_emit("{D:%}{e:type/whiteout}");
+ xo_emit("{D:%%}{e:type/whiteout}");
return (1);
default:
break;