mythread.h: Fix typo error in Vista threads mythread_once().

The "once_" variable was accidentally referred to as just "once". This
prevented building with Vista threads when
HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR was not defined.
This commit is contained in:
Jamaika1 2023-08-08 14:07:59 +02:00 committed by Jia Tan
parent d93fbefcc4
commit c0c0cd4a48
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ typedef struct {
abort(); \
if (pending_) { \
func(); \
if (!InitOnceComplete(&once, 0, NULL)) \
if (!InitOnceComplete(&once_, 0, NULL)) \
abort(); \
} \
} while (0)