summaryrefslogtreecommitdiffstats
path: root/compat/strtoul.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-07-02 12:17:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-07-02 12:17:26 (GMT)
commitdfeb9e71446a7354fd0e7551244db75e36bc3c13 (patch)
tree1576e69effccf8fb0604c2f141938b003cc5d91e /compat/strtoul.c
parenta6e73bdff10969ba7650f19309abf4a6ee9c041d (diff)
downloadtcl-dfeb9e71446a7354fd0e7551244db75e36bc3c13.zip
tcl-dfeb9e71446a7354fd0e7551244db75e36bc3c13.tar.gz
tcl-dfeb9e71446a7354fd0e7551244db75e36bc3c13.tar.bz2
Remove unnecessary end-of-line spacing in compat/*.c
Diffstat (limited to 'compat/strtoul.c')
-rw-r--r--compat/strtoul.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/strtoul.c b/compat/strtoul.c
index d572c2b..15587f1 100644
--- a/compat/strtoul.c
+++ b/compat/strtoul.c
@@ -1,4 +1,4 @@
-/*
+/*
* strtoul.c --
*
* Source code for the "strtoul" library procedure.
@@ -90,7 +90,7 @@ strtoul(
* If no base was provided, pick one from the leading characters of the
* string.
*/
-
+
if (base == 0) {
if (*p == '0') {
p += 1;
@@ -206,7 +206,7 @@ strtoul(
if (overflow) {
errno = ERANGE;
return ULONG_MAX;
- }
+ }
if (negative) {
return -result;
}