diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-30 18:49:56 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-30 18:49:56 (GMT) |
commit | 5a2668b326471874ca69357af831cdcf1575c621 (patch) | |
tree | 92f40c9de267766f0533df44212ec2df6415aa47 /Utilities/cmtar/output.c | |
parent | 08b14163ee2cc9cced08d80b2c81b29c83072229 (diff) | |
download | CMake-5a2668b326471874ca69357af831cdcf1575c621.zip CMake-5a2668b326471874ca69357af831cdcf1575c621.tar.gz CMake-5a2668b326471874ca69357af831cdcf1575c621.tar.bz2 |
ENH: add support for win64 for visual studio 2005 ide and nmake, also fix warnings produced by building for win64
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 56e5a74..283c594 100644 --- a/Utilities/cmtar/output.c +++ b/Utilities/cmtar/output.c @@ -118,7 +118,7 @@ th_print_long_ls(TAR *t) mtime = th_get_mtime(t); mtm = localtime(&mtime); #ifdef HAVE_STRFTIME - strftime(timebuf, sizeof(timebuf), "%h %e %H:%M %Y", mtm); + strftime(timebuf, sizeof(timebuf), "%b %d %H:%M %Y", mtm); printf("%s", timebuf); #else printf("%.3s %2d %2d:%02d %4d", |