mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-29 13:42:07 +00:00
missed type casing with %8llu change
This commit is contained in:
parent
7e9aff55bc
commit
e8e9fd5f9c
@ -681,7 +681,7 @@ ls_file(char *name, struct stat *st)
|
||||
if (sz == 0)
|
||||
tbuf[0] = '\0';
|
||||
snprintf(buf, sizeof buf, "%s %3d %-8.8s %-8.8s %8llu %s %s", mode,
|
||||
st->st_nlink, user, group, (long long)st->st_size, tbuf, name);
|
||||
st->st_nlink, user, group, (unsigned long long)st->st_size, tbuf, name);
|
||||
return xstrdup(buf);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user