net/bnxt: fix null dereference in session cleanup
[dpdk.git] / app / test / test_table_pipeline.c
index aabf437..7adbbff 100644 (file)
@@ -2,6 +2,8 @@
  * Copyright(c) 2010-2014 Intel Corporation
  */
 
+#ifndef RTE_EXEC_ENV_WINDOWS
+
 #include <string.h>
 #include <rte_pipeline.h>
 #include <rte_log.h>
@@ -364,7 +366,7 @@ setup_pipeline(int test_type)
                                .action = RTE_PIPELINE_ACTION_PORT,
                                {.port_id = port_out_id[i^1]},
                        };
-                       printf("Setting secont table to output to port\n");
+                       printf("Setting second table to output to port\n");
 
                        /* Add the default action for the table. */
                        ret = rte_pipeline_table_default_entry_add(p,
@@ -569,3 +571,5 @@ test_table_pipeline(void)
 
        return 0;
 }
+
+#endif /* !RTE_EXEC_ENV_WINDOWS */