From: Blue Swirl Date: Mon, 31 Aug 2009 15:14:40 +0000 (+0000) Subject: Fix breakage due to __thread X-Git-Tag: v0.12.0-rc0~1371 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=528e93a9787ccfc59582a44035f5f342caf5b84f;p=thirdparty%2Fqemu.git Fix breakage due to __thread Thread-local storage is not supported on all hosts. Signed-off-by: Blue Swirl --- diff --git a/monitor.c b/monitor.c index 2559a625979..41a83e6defc 100644 --- a/monitor.c +++ b/monitor.c @@ -3229,7 +3229,7 @@ struct QemuErrorSink { QemuErrorSink *previous; }; -static __thread QemuErrorSink *qemu_error_sink; +static QemuErrorSink *qemu_error_sink; void qemu_errors_to_file(FILE *fp) {