diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-07-02 12:17:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-07-02 12:17:26 (GMT) |
commit | dfeb9e71446a7354fd0e7551244db75e36bc3c13 (patch) | |
tree | 1576e69effccf8fb0604c2f141938b003cc5d91e /compat/strtoul.c | |
parent | a6e73bdff10969ba7650f19309abf4a6ee9c041d (diff) | |
download | tcl-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.c | 6 |
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; } |