remove extra spaces before ;

This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-05-22 12:05:35 +09:00
parent 6a6c0869dc
commit 2f7f797473
13 changed files with 37 additions and 31 deletions
+1 -1
View File
@@ -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++;