summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMasaki Muranaka <[email protected]>2013-03-26 15:13:52 +0900
committerMasaki Muranaka <[email protected]>2013-03-26 15:14:01 +0900
commitfd49ae0a848214b3c2041b88d561fe4192c61bfd (patch)
tree765aec0539b09b0ad9de327abfed99df7d6d429a
parenteafd5f647a7a9970c86723643d29778e3ca4e49b (diff)
downloadmruby-fd49ae0a848214b3c2041b88d561fe4192c61bfd.tar.gz
mruby-fd49ae0a848214b3c2041b88d561fe4192c61bfd.zip
Preprocessor # should be the top of line.
-rw-r--r--src/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.c b/src/string.c
index 248ec73bd..65f21a091 100644
--- a/src/string.c
+++ b/src/string.c
@@ -2275,7 +2275,7 @@ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, int badcheck)
char *end;
double d;
#if !defined(DBL_DIG)
- #define DBL_DIG 16
+# define DBL_DIG 16
#endif
enum {max_width = 20};