diff options
author | dkf <dkf@noemail.net> | 2005-09-08 14:10:55 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2005-09-08 14:10:55 (GMT) |
commit | e497d50fb41344a0d05df7449bdcdc68bd7651bd (patch) | |
tree | d600f6fee238b2f3f2ed5651a38affb4fd05912a | |
parent | cf52ab9d3c424daad7fafc24d25d16335258393b (diff) | |
download | tcl-e497d50fb41344a0d05df7449bdcdc68bd7651bd.zip tcl-e497d50fb41344a0d05df7449bdcdc68bd7651bd.tar.gz tcl-e497d50fb41344a0d05df7449bdcdc68bd7651bd.tar.bz2 |
Squelch warning
FossilOrigin-Name: c5c285935ae8632225a1edea6ab7c2a38b1c02da
-rw-r--r-- | generic/tclTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 641c781..8c0067f 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.95 2005/09/08 14:09:05 dkf Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.96 2005/09/08 14:10:55 dkf Exp $ */ #define TCL_TEST @@ -2566,7 +2566,7 @@ TestlinkCmd(dummy, interp, argc, argv) static unsigned short ushortVar = 60000; static unsigned int uintVar = 0xbeeffeed; static long longVar = 123456789L; - static unsigned long ulongVar = 3456789012; + static unsigned long ulongVar = 3456789012UL; static float floatVar = 4.5; static Tcl_WideUInt uwideVar = (Tcl_WideUInt) Tcl_LongAsWide(123); static int created = 0; |