Fix breakage due to __thread

Thread-local storage is not supported on all hosts.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2009-08-31 15:14:40 +00:00
parent 757506d282
commit 528e93a978
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{