diff --git a/include/empthread.h b/include/empthread.h index 1c4ff15d..3ef3fcf1 100644 --- a/include/empthread.h +++ b/include/empthread.h @@ -110,7 +110,7 @@ typedef struct empth_rwlock_t empth_rwlock_t; #define EMPTH_PRINT 0x1 #define EMPTH_STACKCHECK 0x2 -typedef struct loc_Thread_t empth_t; +typedef struct loc_Thread empth_t; typedef struct loc_Sem_t empth_sem_t; typedef struct loc_RWLock_t empth_rwlock_t; diff --git a/src/lib/empthread/ntthread.c b/src/lib/empthread/ntthread.c index 0909b206..db0333e1 100644 --- a/src/lib/empthread/ntthread.c +++ b/src/lib/empthread/ntthread.c @@ -63,9 +63,9 @@ #define loc_MIN_THREAD_STACK 16384 /************************ - * loc_Thread_t + * loc_Thread */ -struct loc_Thread_t { +struct loc_Thread { /* The thread name, passed in at create time. */ char szName[17];