diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-31 04:03:56 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-31 04:03:56 (GMT) |
commit | 0ee2d0b345a042a64e119927a2515c64e3410696 (patch) | |
tree | 7e720c3fbe7e94be5c91c0c657e801863fb5d45a /Utilities | |
parent | 1247616d1fafa9e7eeff9e92b5b664f2f29470a8 (diff) | |
download | CMake-0ee2d0b345a042a64e119927a2515c64e3410696.zip CMake-0ee2d0b345a042a64e119927a2515c64e3410696.tar.gz CMake-0ee2d0b345a042a64e119927a2515c64e3410696.tar.bz2 |
ENH: remove warning
Diffstat (limited to 'Utilities')
-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; |