summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-09-28 00:23:46 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-09-28 00:23:46 (GMT)
commit3bf6e7cfec321e638a1b3fe748649e7e36211e13 (patch)
tree9da3bbd52124d666dbe7a96e429bd4ef9e2d440d
parentf55cc93d98857e6b51fc83b642847257c75190c0 (diff)
downloadtcl-3bf6e7cfec321e638a1b3fe748649e7e36211e13.zip
tcl-3bf6e7cfec321e638a1b3fe748649e7e36211e13.tar.gz
tcl-3bf6e7cfec321e638a1b3fe748649e7e36211e13.tar.bz2
formatting
-rw-r--r--generic/tclScan.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclScan.c b/generic/tclScan.c
index 15b9d2f..de9dab9 100644
--- a/generic/tclScan.c
+++ b/generic/tclScan.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclScan.c,v 1.16.2.5 2005/09/02 17:42:24 dgp Exp $
+ * RCS: @(#) $Id: tclScan.c,v 1.16.2.6 2005/09/28 00:23:46 dgp Exp $
*/
#include "tclInt.h"
@@ -1107,7 +1107,8 @@ Tcl_ScanObjCmd(dummy, interp, objc, objv)
break;
}
if (flags & SCAN_LONGER) {
- if (Tcl_GetWideIntFromObj(NULL, objPtr, &wideValue) != TCL_OK) { wideValue = ~(Tcl_WideUInt)0 >> 1; /* WIDE_MAX */
+ if (Tcl_GetWideIntFromObj(NULL, objPtr, &wideValue) != TCL_OK) {
+ wideValue = ~(Tcl_WideUInt)0 >> 1; /* WIDE_MAX */
if (Tcl_GetString(objPtr)[0] == '-') {
wideValue++; /* WIDE_MAX + 1 = WIDE_MIN */
}