diff options
author | Tom Lane | 2014-02-17 01:01:18 +0000 |
---|---|---|
committer | Tom Lane | 2014-02-17 01:01:18 +0000 |
commit | a1c802712c369af4085c365cb79c3063b8407ef4 (patch) | |
tree | 68d0aaae182ba6b575725d9e900edba50270e607 | |
parent | 8d6e2d4abf77c422714448e5f4270fdb1a84d973 (diff) |
Fix unportable coding in tarCreateHeader().
uid_t and gid_t might be wider than int on some platforms.
Per buildfarm member brolga.
-rw-r--r-- | src/port/tar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/tar.c b/src/port/tar.c index 33b488464f..09fd6c10d3 100644 --- a/src/port/tar.c +++ b/src/port/tar.c @@ -81,10 +81,10 @@ tarCreateHeader(char *h, const char *filename, const char *linktarget, sprintf(&h[100], "%07o ", (int) mode); /* User ID 8 */ - sprintf(&h[108], "%07o ", uid); + sprintf(&h[108], "%07o ", (int) uid); /* Group 8 */ - sprintf(&h[116], "%07o ", gid); + sprintf(&h[116], "%07o ", (int) gid); /* File size 12 - 11 digits, 1 space; use print_val for 64 bit support */ if (linktarget != NULL || S_ISDIR(mode)) |