mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06: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…
Add table
Add a link
Reference in a new issue