diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-14 18:44:09 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-14 18:44:09 (GMT) |
| commit | 3c192c3c5cad86f9b9ad201201f6ab7c2041a315 (patch) | |
| tree | f779bdbb1b12fb1be7a1218415cb5b4bf6539474 /generic/tclScan.c | |
| parent | d9a71f65449a73b80d7cde60cb934cb15f16b3fe (diff) | |
| download | tcl-3c192c3c5cad86f9b9ad201201f6ab7c2041a315.zip tcl-3c192c3c5cad86f9b9ad201201f6ab7c2041a315.tar.gz tcl-3c192c3c5cad86f9b9ad201201f6ab7c2041a315.tar.bz2 | |
Fix non-standard indentation pattern
Diffstat (limited to 'generic/tclScan.c')
| -rw-r--r-- | generic/tclScan.c | 14 |
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; |
