Commit 37d2d57d authored by U.Nakamura's avatar U.Nakamura

Use underbar'ed name to get rid of warnings

parent e5fedaf6
...@@ -13,7 +13,7 @@ printstr(mrb_state *mrb, mrb_value obj) ...@@ -13,7 +13,7 @@ printstr(mrb_state *mrb, mrb_value obj)
{ {
if (mrb_string_p(obj)) { if (mrb_string_p(obj)) {
#if defined(_WIN32) #if defined(_WIN32)
if (isatty(fileno(stdout))) { if (_isatty(_fileno(stdout))) {
DWORD written; DWORD written;
int mlen = RSTRING_LEN(obj); int mlen = RSTRING_LEN(obj);
char* utf8 = RSTRING_PTR(obj); char* utf8 = RSTRING_PTR(obj);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment