diff options
Diffstat (limited to 'Utilities/cmtar')
-rw-r--r-- | Utilities/cmtar/append.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmtar/append.c b/Utilities/cmtar/append.c index 7cee558..6b746ea 100644 --- a/Utilities/cmtar/append.c +++ b/Utilities/cmtar/append.c @@ -267,7 +267,7 @@ tar_append_regfile(TAR *t, char *realname) if (j != -1) { fprintf(stderr, "Unexpected size of read data: %d <> %d for file: %s\n", - j, T_BLOCKSIZE, realname); + (int)j, T_BLOCKSIZE, realname); errno = EINVAL; } return -1; |