diff options
| author | redman <redman@noemail.net> | 1999-07-22 01:26:17 (GMT) |
|---|---|---|
| committer | redman <redman@noemail.net> | 1999-07-22 01:26:17 (GMT) |
| commit | cfbbcfbcc3e1aaff07cdd5edb7deba4b7d315e3e (patch) | |
| tree | b3656630330364f692f672bbca4293cf8647962f /unix/tclUnixTime.c | |
| parent | d2493ea3677d215d260840749e95a0f7f316ce69 (diff) | |
| download | tcl-cfbbcfbcc3e1aaff07cdd5edb7deba4b7d315e3e.zip tcl-cfbbcfbcc3e1aaff07cdd5edb7deba4b7d315e3e.tar.gz tcl-cfbbcfbcc3e1aaff07cdd5edb7deba4b7d315e3e.tar.bz2 | |
revert changes to TclpStrftime, not needed for internal functions.
FossilOrigin-Name: a4cee78edc3a5c4654cbf4fb76845626b0849c0e
Diffstat (limited to 'unix/tclUnixTime.c')
| -rw-r--r-- | unix/tclUnixTime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index 853ab2c..c1a9161 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTime.c,v 1.5 1999/07/22 01:08:05 redman Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.6 1999/07/22 01:26:19 redman Exp $ */ #include "tclInt.h" @@ -288,12 +288,12 @@ TclpGetDate(time, useGMT) *---------------------------------------------------------------------- */ -unsigned long +size_t TclpStrftime(s, maxsize, format, t) char *s; size_t maxsize; CONST char *format; CONST struct tm *t; { - return (unsigned long) strftime(s, maxsize, format, t); + return strftime(s, maxsize, format, t); } |
