]> git.proxmox.com Git - qemu.git/commit - vl.c
Fix "defined but not used" warning
authorLuiz Capitulino <lcapitulino@redhat.com>
Tue, 9 Jun 2009 21:24:57 +0000 (18:24 -0300)
committerBlue Swirl <blauwirbel@gmail.com>
Wed, 10 Jun 2009 16:54:33 +0000 (19:54 +0300)
commitb319820d4099ec6b98c9c260e06d519fc41d544c
treed99ff73427d67d963fc043971dd5925e5858041f
parent4590fd80b867cca0cad87ec8d3cb7be2cd56f8b4
Fix "defined but not used" warning

The function qemu_calculate_timeout() is only used when CONFIG_IOTHREAD
is not defined. When CONFIG_IOTHREAD is defined, we have the following
warning:

vl.c:4389: warning: ‘qemu_calculate_timeout’ defined but not used

This change fixes that by moving the #ifdef/#endif from main_loop()
into qemu_calculate_timeout(). This encapsulates the logic and allow
us to use qemu_calculate_timeout() when CONFIG_IOTHREAD is defined
or not (suggested by Glauber Costa).

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
vl.c