missed type casing with %8llu change

This commit is contained in:
Ben Lindstrom 2001-02-10 23:02:23 +00:00
parent 7e9aff55bc
commit e8e9fd5f9c

View File

@ -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);
}