mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 00:04:30 +02: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)
|
if (sz == 0)
|
||||||
tbuf[0] = '\0';
|
tbuf[0] = '\0';
|
||||||
snprintf(buf, sizeof buf, "%s %3d %-8.8s %-8.8s %8llu %s %s", mode,
|
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);
|
return xstrdup(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user