diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-14 12:20:59 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-14 12:20:59 +0000 |
commit | b8bcb6474c14cbe6ec3d9b8de34e8acec627370a (patch) | |
tree | d79e73d069d30214ccdfd272e92fd1308b8bb4a9 /win32 | |
parent | b4dc41d42ee969dcbe9da510073a06a627c9b2fd (diff) | |
download | bundler-b8bcb6474c14cbe6ec3d9b8de34e8acec627370a.tar.gz |
* win32/win32.c (rb_w32_read): suppress warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31276 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/win32.c b/win32/win32.c index f87cf8b696..5aea1b5e78 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -5045,7 +5045,7 @@ rb_w32_read(int fd, void *buf, size_t size) size_t ret; OVERLAPPED ol, *pol = NULL; BOOL isconsole; - BOOL islineinput; + BOOL islineinput = FALSE; int start = 0; if (is_socket(sock)) @@ -5070,7 +5070,7 @@ rb_w32_read(int fd, void *buf, size_t size) ret = 0; isconsole = is_console(_osfhnd(fd)); - if(isconsole){ + if (isconsole) { DWORD mode; GetConsoleMode((HANDLE)_osfhnd(fd),&mode); islineinput = (mode & ENABLE_LINE_INPUT) != 0; |