diff options
Diffstat (limited to 'src/windows')
-rw-r--r-- | src/windows/cns/ChangeLog | 4 | ||||
-rw-r--r-- | src/windows/cns/tktlist.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/windows/cns/ChangeLog b/src/windows/cns/ChangeLog index d79cf15448..d32fd8ac3f 100644 --- a/src/windows/cns/ChangeLog +++ b/src/windows/cns/ChangeLog @@ -1,3 +1,7 @@ +2005-03-15 Jeffrey Altman <jaltman@mit.edu> + + * tktlist.c: do not mix pointers to long and time_t + 2004-09-30 Jeffrey Altman <jaltman@mit.edu> * Makefile.in: add $(BUILDTOP) to include path for patchlevel.h diff --git a/src/windows/cns/tktlist.c b/src/windows/cns/tktlist.c index 5e1520120b..68a6f1c629 100644 --- a/src/windows/cns/tktlist.c +++ b/src/windows/cns/tktlist.c @@ -56,7 +56,7 @@ typedef struct { * Returns: A pointer to the adjusted time value. */ static char * -short_date (long t) +short_date (time_t t) { static char buf[26 - 4]; char *p; |