aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sh/strtol.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sh/strtol.c')
-rw-r--r--lib/sh/strtol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sh/strtol.c b/lib/sh/strtol.c
index 8e3aa39..e990932 100644
--- a/lib/sh/strtol.c
+++ b/lib/sh/strtol.c
@@ -204,8 +204,8 @@ noconv:
if (save - nptr >= 2 && toupper (save[-1]) == 'X' && save[-2] == '0')
*endptr = (char *) &save[-1];
else
- /* There was no number to convert. */
- *endptr = (char *) nptr;
+ /* There was no number to convert. */
+ *endptr = (char *) nptr;
}
return 0L;