Merge pull request #2920 from cremno/fix-irep-float-dump-format-string-for-mrb_use_float

irep dump: fix format string for MRB_USE_FLOAT
This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-08-18 04:09:07 +09:00
+1 -1
View File
@@ -16,7 +16,7 @@
#define FLAG_BYTEORDER_NONATIVE 0
#ifdef MRB_USE_FLOAT
#define MRB_FLOAT_FMT "%.9e"
#define MRB_FLOAT_FMT "%.8e"
#else
#define MRB_FLOAT_FMT "%.16e"
#endif