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)
commitfb6b7a8d8df44ad9dc0d96bddf6acfed423fa873 (patch)
tree1576e69effccf8fb0604c2f141938b003cc5d91e /compat/strtoul.c
parent4cd9155ae918a63f1c940a9557bf9ab4afd4a333 (diff)
downloadtcl-fb6b7a8d8df44ad9dc0d96bddf6acfed423fa873.zip
tcl-fb6b7a8d8df44ad9dc0d96bddf6acfed423fa873.tar.gz
tcl-fb6b7a8d8df44ad9dc0d96bddf6acfed423fa873.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;
}