remove extra parentheses in return statement
[dpdk.git] / examples / performance-thread / common / lthread_queue.h
index 71f8c73..0c39516 100644 (file)
@@ -153,7 +153,7 @@ _lthread_queue_create(const char *name)
 static inline int __attribute__ ((always_inline))
 _lthread_queue_empty(struct lthread_queue *q)
 {
-       return (q->tail == q->head);
+       return q->tail == q->head;
 }