]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/pipeline/pipeline_flow_actions_be.c
remove extra parentheses in return statement
[dpdk.git] / examples / ip_pipeline / pipeline / pipeline_flow_actions_be.c
index 73dbe7a021fd67e6fd66fc39d839a8350c7ff5bd..ec149c8af5091935e518afb8dcec6b532532c81f 100644 (file)
@@ -380,7 +380,7 @@ pkt4_work(
        *pkt2_color = color3_2;
        *pkt3_color = color3_3;
 
-       return (drop0 | (drop1 << 1) | (drop2 << 2) | (drop3 << 3));
+       return drop0 | (drop1 << 1) | (drop2 << 2) | (drop3 << 3);
 }
 
 PIPELINE_TABLE_AH_HIT_DROP_TIME(fa_table_ah_hit, pkt_work, pkt4_work);