Minor, remove unnecessary semicolon

Causing -Wextra-semi-stmt build error when no primitive has chosen
Interesting that nobody has noticed it yet.
This commit is contained in:
Ebrahim Byagowi 2019-06-07 02:01:27 +04:30 committed by GitHub
parent f9b1ae7336
commit 1bada656a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ typedef volatile int hb_mutex_impl_t;
#define HB_MUTEX_IMPL_INIT 0
#define hb_mutex_impl_init(M) *(M) = 0
#define hb_mutex_impl_lock(M) HB_STMT_START { while (*(M)) HB_SCHED_YIELD (); (*(M))++; } HB_STMT_END
#define hb_mutex_impl_unlock(M) (*(M))--;
#define hb_mutex_impl_unlock(M) (*(M))--
#define hb_mutex_impl_finish(M) HB_STMT_START {} HB_STMT_END