mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
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:
parent
757506d282
commit
528e93a978
1 changed files with 1 additions and 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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue