summaryrefslogtreecommitdiffhomepage
path: root/src/sprintf.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-06-19 09:45:58 +0900
committerYukihiro Matsumoto <[email protected]>2012-06-19 09:45:58 +0900
commitd8e0fbab51c3e0b4ecd0a0faa3a7c55bcf3ffb09 (patch)
treea8a3192c552c3407c910dce9b2cf591c7c708838 /src/sprintf.c
parent3d5c9521c7d0775402346a30f301db865b9c8dad (diff)
downloadmruby-d8e0fbab51c3e0b4ecd0a0faa3a7c55bcf3ffb09.tar.gz
mruby-d8e0fbab51c3e0b4ecd0a0faa3a7c55bcf3ffb09.zip
forgot to replace INLCUDE_KERNEL_SPRINTF by ENABLE_KERNEL_SPRINTF
Diffstat (limited to 'src/sprintf.c')
-rw-r--r--src/sprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sprintf.c b/src/sprintf.c
index c7e7badc4..b4d460c83 100644
--- a/src/sprintf.c
+++ b/src/sprintf.c
@@ -6,7 +6,7 @@
#include "mruby.h"
-#ifdef INCLUDE_KERNEL_SPRINTF
+#ifdef ENABLE_KERNEL_SPRINTF
#include <stdio.h>
#include <string.h>
@@ -1082,4 +1082,4 @@ fmt_setup(char *buf, size_t size, int c, int flags, int width, int prec)
*buf = '\0';
}
-#endif //INCLUDE_KERNEL_SPRINTF
+#endif /* ENABLE_KERNEL_SPRINTF */