aboutsummaryrefslogtreecommitdiff
path: root/win32/termios.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-03-13 22:02:12 +0000
committerRon Yorston <rmy@pobox.com>2014-03-13 22:02:12 +0000
commite8c9f63c8e618d85104369a4c588129b165851e2 (patch)
tree472f9a45e0cd789fee8d5b875a97d9877c169ff8 /win32/termios.c
parente15ec3837bfed8a05ff0e8c7edd658fbb41f5d7d (diff)
downloadbusybox-w32-e8c9f63c8e618d85104369a4c588129b165851e2.tar.gz
busybox-w32-e8c9f63c8e618d85104369a4c588129b165851e2.tar.bz2
busybox-w32-e8c9f63c8e618d85104369a4c588129b165851e2.zip
Fix some compiler warnings
Diffstat (limited to 'win32/termios.c')
-rw-r--r--win32/termios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/termios.c b/win32/termios.c
index 12db40133..ad6ab117f 100644
--- a/win32/termios.c
+++ b/win32/termios.c
@@ -10,7 +10,7 @@ int tcgetattr(int fd UNUSED_PARAM, struct termios *t UNUSED_PARAM)
10 return -1; 10 return -1;
11} 11}
12 12
13int64_t FAST_FUNC read_key(int fd, char *buf, int timeout) 13int64_t FAST_FUNC read_key(int fd, char *buf UNUSED_PARAM, int timeout)
14{ 14{
15 HANDLE cin = GetStdHandle(STD_INPUT_HANDLE); 15 HANDLE cin = GetStdHandle(STD_INPUT_HANDLE);
16 INPUT_RECORD record; 16 INPUT_RECORD record;