diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2012-04-10 08:10:41 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-04-10 08:10:41 -0500 |
| commit | 72fe3aaed94936739abfa158fa28f147b75ae9ff (patch) | |
| tree | dc7f090fe72b645a5b489ade9088d2125eb8a934 /qtest.c | |
| parent | 2c097f6003f2a11416706ae3252c2860ed2257a9 (diff) | |
| parent | 53fbf7b5391c76cc474d469bfed6a69a1243f4de (diff) | |
| download | focaccia-qemu-72fe3aaed94936739abfa158fa28f147b75ae9ff.tar.gz focaccia-qemu-72fe3aaed94936739abfa158fa28f147b75ae9ff.zip | |
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
* stefanha/trivial-patches: make: fix clean rule by removing build file in qom/ configure: Link qga against UST tracing related libraries configure: Link QEMU against 'liburcu-bp' main-loop: make qemu_event_handle static block/curl: Replace usleep by g_usleep qtest: Add missing GCC_FMT_ATTR w32: Undefine error constants before their redefinition configure: fix mingw32 libs_qga typo
Diffstat (limited to 'qtest.c')
| -rw-r--r-- | qtest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qtest.c b/qtest.c index daeabb7c25..18afcd9cf1 100644 --- a/qtest.c +++ b/qtest.c @@ -156,7 +156,8 @@ static void qtest_send_prefix(CharDriverState *chr) tv.tv_sec, tv.tv_usec); } -static void qtest_send(CharDriverState *chr, const char *fmt, ...) +static void GCC_FMT_ATTR(2, 3) qtest_send(CharDriverState *chr, + const char *fmt, ...) { va_list ap; char buffer[1024]; |