]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_eal/common/include/generic/rte_spinlock.h
remove extra parentheses in return statement
[dpdk.git] / lib / librte_eal / common / include / generic / rte_spinlock.h
index 4e0a3c30186430f70be71569a07b9574e2f29297..e51fc56baddb630caa2ac38ddc8e57ac791c306f 100644 (file)
@@ -127,7 +127,7 @@ rte_spinlock_trylock (rte_spinlock_t *sl);
 static inline int
 rte_spinlock_trylock (rte_spinlock_t *sl)
 {
-       return (__sync_lock_test_and_set(&sl->locked,1) == 0);
+       return __sync_lock_test_and_set(&sl->locked,1) == 0;
 }
 #endif