diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-31 15:14:40 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-31 15:14:40 +0000 |
commit | 528e93a9787ccfc59582a44035f5f342caf5b84f (patch) | |
tree | c96587aff5f2b6ee1186e3eb2213b6bf4602690c /monitor.c | |
parent | 757506d282c3c579368055b1bf50fa4056dbe5bc (diff) |
Fix breakage due to __thread
Thread-local storage is not supported on all hosts.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |