| Submitter | Eduardo Habkost |
|---|---|
| Date | Nov. 9, 2012, 1:08 p.m. |
| Message ID | <1352466519-5779-12-git-send-email-ehabkost@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/198069/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/qapi/qmp-registry.c b/qapi/qmp-registry.c index 5414613..c2c31b4 100644 --- a/qapi/qmp-registry.c +++ b/qapi/qmp-registry.c @@ -12,6 +12,8 @@ * */ +#include <glib.h> +#include <string.h> #include "qapi/qmp-core.h" static QTAILQ_HEAD(QmpCommandList, QmpCommand) qmp_commands =
Include: - <glib.h> for g_malloc0() - <string.h> for strcmp() Some of those headers were probably being included by accident because some other headers were including qemu-common.h, but those headers should eventually stop including qemu-common.h. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> --- qapi/qmp-registry.c | 2 ++ 1 file changed, 2 insertions(+)