From c60a52954378a0e28ab0c05718c81a2bb1aeb7c6 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 3 Sep 2021 20:27:58 +0900 Subject: [PATCH] Get rid of duplicate typedef --- thread_win32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thread_win32.h b/thread_win32.h index f0294ee7f6..994949d2b4 100644 --- a/thread_win32.h +++ b/thread_win32.h @@ -21,10 +21,10 @@ WINBASEAPI BOOL WINAPI TryEnterCriticalSection(IN OUT LPCRITICAL_SECTION lpCriticalSection); -typedef struct rb_thread_cond_struct { +struct rb_thread_cond_struct { struct cond_event_entry *next; struct cond_event_entry *prev; -} rb_nativethread_cond_t; +}; typedef struct native_thread_data_struct { HANDLE interrupt_event;