diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2014-02-08 11:41:07 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-02-17 23:10:02 +0100 |
commit | 91f32b0c92fb18a403e48d3c8ffc14422a0c1ca5 (patch) | |
tree | c1777d672e179300205f792840bc9a2ada3d8670 /tests/qom-test.c | |
parent | e41b509d68afb1f329c8558b6edfe2fcbac88e66 (diff) |
qtest: Include system headers before user headers
It is dangerous to include user headers before system headers since user
macros can affect system headers.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/qom-test.c')
-rw-r--r-- | tests/qom-test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qom-test.c b/tests/qom-test.c index 3316a110a2..b6671fbec3 100644 --- a/tests/qom-test.c +++ b/tests/qom-test.c @@ -6,10 +6,11 @@ * This work is licensed under the terms of the GNU GPL, version 2 or later. * See the COPYING file in the top-level directory. */ -#include "libqtest.h" #include <glib.h> #include <string.h> + +#include "libqtest.h" #include "qemu/osdep.h" #include "qapi/qmp/types.h" |