From 528e93a9787ccfc59582a44035f5f342caf5b84f Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Mon, 31 Aug 2009 15:14:40 +0000 Subject: [PATCH] Fix breakage due to __thread Thread-local storage is not supported on all hosts. Signed-off-by: Blue Swirl --- monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {