sim-card
/
qemu
Archived
10
0
Fork 0

Error: Fix build when qemu-common.h is not included

Commit e4ea5e2d0e added the use of
the macro GCC_FMT_ATTR to error.h, however compiler.h is not
included by error.h

This will cause a build error when files including error.h
don't include qemu-common.h (or compiler.h). Not an issue today
because the only file including it is json-parser.h and it does
include qemu-common.h, but let's get it fixed.

Signed-off-by: Luiz Capitulino <lcapitulino@gmail.com>
This commit is contained in:
Luiz Capitulino 2011-07-11 15:01:57 -03:00
parent 5c0263204d
commit d3608b7cc6
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@
#ifndef ERROR_H
#define ERROR_H
#include "compiler.h"
#include <stdbool.h>
/**