summaryrefslogtreecommitdiffstats
path: root/generic/tclScan.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclScan.c')
-rw-r--r--generic/tclScan.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/generic/tclScan.c b/generic/tclScan.c
index 4ffe177..b53b29c 100644
--- a/generic/tclScan.c
+++ b/generic/tclScan.c
@@ -358,17 +358,15 @@ ValidateFormat(
/* Note ull >= 0 because of isdigit check above */
unsigned long long ull;
ull = strtoull(
- format - 1, (char **)&format, 10); /* INTL: "C" locale. */
+ format - 1, (char **)&format, 10); /* INTL: "C" locale. */
/* Note >=, not >, to leave room for a nul */
if (ull >= TCL_SIZE_MAX) {
- Tcl_SetObjResult(
- interp,
- Tcl_ObjPrintf("specified field width %" TCL_LL_MODIFIER
- "u exceeds limit %" TCL_SIZE_MODIFIER "d.",
- ull,
- (Tcl_Size)TCL_SIZE_MAX-1));
+ Tcl_SetObjResult(interp, Tcl_ObjPrintf(
+ "specified field width %" TCL_LL_MODIFIER
+ "u exceeds limit %" TCL_SIZE_MODIFIER "d.",
+ ull, (Tcl_Size)TCL_SIZE_MAX-1));
Tcl_SetErrorCode(
- interp, "TCL", "FORMAT", "WIDTHLIMIT", (char *)NULL);
+ interp, "TCL", "FORMAT", "WIDTHLIMIT", (char *)NULL);
goto error;
}
flags |= SCAN_WIDTH;