Browse Source

remove extra comma in lock macro

Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Austin Foxley 15 years ago
parent
commit
dfb389dea8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/sysdeps/linux/common/bits/uClibc_mutex.h

+ 1 - 1
libc/sysdeps/linux/common/bits/uClibc_mutex.h

@@ -32,7 +32,7 @@
 		__pthread_mutex_unlock(&(M))
 
 #define __UCLIBC_MUTEX_TRYLOCK_CANCEL_UNSAFE(M)								\
-		__pthread_mutex_trylock,(&(M))
+		__pthread_mutex_trylock(&(M))
 
 #define __UCLIBC_MUTEX_CONDITIONAL_LOCK(M,C)								\
 	do {												\