mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 10:40:19 -04:00
Fix a format mismatch (%d integer format, platform-dependent
argument type).
This commit is contained in:
parent
99122c96a3
commit
bce43ea96d
1 changed files with 1 additions and 1 deletions
|
|
@ -279,7 +279,7 @@ list_item_verbose(struct bsdtar *bsdtar, FILE *out, struct archive_entry *entry)
|
|||
if (!now)
|
||||
time(&now);
|
||||
bsdtar_strmode(entry, tmp);
|
||||
fprintf(out, "%s %d ", tmp, st->st_nlink);
|
||||
fprintf(out, "%s %d ", tmp, (int)(st->st_nlink));
|
||||
|
||||
/* Use uname if it's present, else uid. */
|
||||
p = archive_entry_uname(entry);
|
||||
|
|
|
|||
Loading…
Reference in a new issue