mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Fix compiler warning.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2702 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
e6b1e558ac
commit
877cf88232
1 changed files with 4 additions and 1 deletions
5
vl.c
5
vl.c
|
@ -6143,7 +6143,10 @@ void main_loop_wait(int timeout)
|
|||
{
|
||||
IOHandlerRecord *ioh;
|
||||
fd_set rfds, wfds, xfds;
|
||||
int ret, ret2, nfds, i;
|
||||
int ret, nfds;
|
||||
#ifdef _WIN32
|
||||
int ret2, i;
|
||||
#endif
|
||||
struct timeval tv;
|
||||
PollingEntry *pe;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue