diff options
| author | Eduardo Habkost | 2014-09-26 21:46:02 +0200 |
|---|---|---|
| committer | Michael Tokarev | 2014-11-02 08:04:34 +0100 |
| commit | a5ebc0ebae1d2283cfec4170b1a04317f2faee74 (patch) | |
| tree | 5b485e637a3a04bcb01b7671d631957f95f21555 | |
| parent | Merge remote-tracking branch 'remotes/sstabellini/xen-2014-10-30' into staging (diff) | |
| download | qemu-a5ebc0ebae1d2283cfec4170b1a04317f2faee74.tar.gz qemu-a5ebc0ebae1d2283cfec4170b1a04317f2faee74.tar.xz qemu-a5ebc0ebae1d2283cfec4170b1a04317f2faee74.zip | |
tests: Add missing include to test-bitops.c
The test code needs osdep.h for the ARRAY_SIZE macro.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
| -rw-r--r-- | tests/test-bitops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-bitops.c b/tests/test-bitops.c index 8238eb5f6b..47b5d3ed9a 100644 --- a/tests/test-bitops.c +++ b/tests/test-bitops.c @@ -8,6 +8,7 @@ #include <glib.h> #include <stdint.h> +#include "qemu/osdep.h" #include "qemu/bitops.h" typedef struct { |
