mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
remove extra spaces before ;
This commit is contained in:
+1
-1
@@ -65,7 +65,7 @@ mrb_read_float(const char *str, char **endp, double *fp)
|
||||
|
||||
if (ISDIGIT(*p)) {
|
||||
while (*p && ISDIGIT(*p)) {
|
||||
f += base * (*p - '0') ;
|
||||
f += base * (*p - '0');
|
||||
base /= 10.0;
|
||||
p++;
|
||||
n++;
|
||||
|
||||
Reference in New Issue
Block a user