diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-30 15:35:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-30 15:35:23 (GMT) |
commit | 9e0633c91090e3254056b33bf8bd1ec4533982a6 (patch) | |
tree | f680ede529eb7bb1c7739884038499e4b6229356 /Utilities/cmtar/output.c | |
parent | bc447c7f92730303c16d34cbe3747854b4c776c3 (diff) | |
download | CMake-9e0633c91090e3254056b33bf8bd1ec4533982a6.zip CMake-9e0633c91090e3254056b33bf8bd1ec4533982a6.tar.gz CMake-9e0633c91090e3254056b33bf8bd1ec4533982a6.tar.bz2 |
BUG: Several Borland fixes
Diffstat (limited to 'Utilities/cmtar/output.c')
-rw-r--r-- | Utilities/cmtar/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmtar/output.c b/Utilities/cmtar/output.c index 14757f4..38cf157 100644 --- a/Utilities/cmtar/output.c +++ b/Utilities/cmtar/output.c @@ -110,8 +110,8 @@ th_print_long_ls(TAR *t) if (TH_ISCHR(t) || TH_ISBLK(t)) printf(" %3d, %3d ", th_get_devmajor(t), th_get_devminor(t)); else - printf("%9ld ", (long)th_get_size(t)); #endif + printf("%9ld ", (long)th_get_size(t)); mtime = th_get_mtime(t); mtm = localtime(&mtime); |