diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-21 16:05:43 -0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-27 11:48:47 -0200 |
commit | cc92addfb4ed60f15aa3acbd129052dc509695f0 (patch) | |
tree | 1b5a4c63e86fdd97256c4014e703f60f3c83316d /vl.c | |
parent | 28d5232c2507359e3cfd5af5ac567d73af37cec8 (diff) | |
download | qemu-cc92addfb4ed60f15aa3acbd129052dc509695f0.tar.gz qemu-cc92addfb4ed60f15aa3acbd129052dc509695f0.tar.bz2 qemu-cc92addfb4ed60f15aa3acbd129052dc509695f0.zip |
Drop qemu-objects.h from modules that don't require it
Previous commits dropped most qobjects usage from qemu modules
(now they are a low level interface used by the QAPI). However,
some modules still include the qemu-objects.h header file.
This commit drops qemu-objects.h from some of those modules
and includes qjson.h instead, which is what they actually need.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -143,9 +143,9 @@ int main(int argc, char **argv) #include "audio/audio.h" #include "migration.h" #include "kvm.h" +#include "qjson.h" #include "qemu-option.h" #include "qemu-config.h" -#include "qemu-objects.h" #include "qemu-options.h" #include "qmp-commands.h" #include "main-loop.h" |