remove extra parentheses in return statement
[dpdk.git] / lib / librte_eal / bsdapp / eal / eal_lcore.c
index b47eb1b..b8bfafd 100644 (file)
@@ -75,5 +75,5 @@ int
 eal_cpu_detected(unsigned lcore_id)
 {
        const unsigned ncpus = eal_get_ncpus();
-       return (lcore_id < ncpus);
+       return lcore_id < ncpus;
 }