summaryrefslogtreecommitdiffstats
path: root/StdLib/LibC/gdtoa/dtoa.c
diff options
context:
space:
mode:
Diffstat (limited to 'StdLib/LibC/gdtoa/dtoa.c')
-rw-r--r--StdLib/LibC/gdtoa/dtoa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/StdLib/LibC/gdtoa/dtoa.c b/StdLib/LibC/gdtoa/dtoa.c
index 42098426fd..cd3b1c85d4 100644
--- a/StdLib/LibC/gdtoa/dtoa.c
+++ b/StdLib/LibC/gdtoa/dtoa.c
@@ -526,15 +526,15 @@ dtoa
Bfree(b);
b = b1;
}
- if (( j = b5 - m5 )!=0)
- b = pow5mult(b, j);
+ if (( j = b5 - m5 )!=0)
+ b = pow5mult(b, j);
if (b == NULL)
return NULL;
}
else
b = pow5mult(b, b5);
- if (b == NULL)
- return NULL;
+ if (b == NULL)
+ return NULL;
}
S = i2b(1);
if (S == NULL)