sched: remove useless malloc in PIE data init
[dpdk.git] / examples / vm_power_manager / guest_cli / main.c
index 4e17f7f..9da5002 100644 (file)
@@ -13,6 +13,7 @@
 #include <rte_debug.h>
 #include <rte_eal.h>
 #include <rte_log.h>
+#include <rte_string_fns.h>
 
 #include "vm_power_cli_guest.h"
 #include "parse.h"
@@ -200,5 +201,8 @@ main(int argc, char **argv)
        }
        run_cli(NULL);
 
+       /* clean up the EAL */
+       rte_eal_cleanup();
+
        return 0;
 }