1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/file.c (rb_freopen): remove debug code.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2015-06-30 09:41:40 +00:00
parent 3e01334fae
commit b4718bf4f0

View file

@ -739,7 +739,6 @@ rb_freopen(VALUE fname, const char *mode, FILE *file)
{
FILE *newfp = 0;
e = _wfreopen_s(&newfp, wname, wmode, file);
if (e != 0) cprintf("DEBUG: %d [%ls] [%ls]\n", e, wname, wmode);
}
#endif
xfree(wname);