replace alignment attributes
[dpdk.git] / examples / ip_pipeline / thread.c
index e1b6fb6..272fbbe 100644 (file)
@@ -820,7 +820,7 @@ pipeline_port_in_stats_read(const char *pipeline_name,
 
        /* Read response */
        status = rsp->status;
-       if (status)
+       if (status == 0)
                memcpy(stats, &rsp->port_in_stats_read.stats, sizeof(*stats));
 
        /* Free response */
@@ -968,7 +968,7 @@ pipeline_port_out_stats_read(const char *pipeline_name,
 
        /* Read response */
        status = rsp->status;
-       if (status)
+       if (status == 0)
                memcpy(stats, &rsp->port_out_stats_read.stats, sizeof(*stats));
 
        /* Free response */
@@ -1024,7 +1024,7 @@ pipeline_table_stats_read(const char *pipeline_name,
 
        /* Read response */
        status = rsp->status;
-       if (status)
+       if (status == 0)
                memcpy(stats, &rsp->table_stats_read.stats, sizeof(*stats));
 
        /* Free response */