From: Blue Swirl Date: Mon, 31 Aug 2009 15:14:40 +0000 (+0000) Subject: Fix breakage due to __thread X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=528e93a9787ccfc59582a44035f5f342caf5b84f;p=qemu.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 2559a62597..41a83e6def 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) {