Warnings be gone. 55/155/2
authorDave Barach <dave@barachs.net>
Wed, 27 Jan 2016 18:41:28 +0000 (13:41 -0500)
committerGerrit Code Review <gerrit@fd.io>
Wed, 27 Jan 2016 19:45:57 +0000 (19:45 +0000)
Change-Id: I53730fd2ccd78fb73e11af77f8ffff19d75ebd95
Signed-off-by: Dave Barach <dave@barachs.net>
vlib/vlib/trace.c
vlib/vlib/unix/main.c

index d133ca4..03f2538 100644 (file)
@@ -235,7 +235,7 @@ cli_show_trace_buffer (vlib_main_t * vm,
     index++;
   }));
 
-  vlib_cli_output (vm, s);
+  vlib_cli_output (vm, (char *) s);
   vec_free (s);
   return 0;
 }
index 1aac327..6ff63f8 100644 (file)
@@ -403,7 +403,7 @@ static uword thread0 (uword arg)
   unformat_input_t input;
   int i;
   
-  unformat_init_command_line (&input, vm->argv);
+  unformat_init_command_line (&input, (char **)vm->argv);
   i = vlib_main (vm, &input);
   unformat_free (&input);
   
@@ -430,7 +430,7 @@ int vlib_unix_main (int argc, char * argv[])
   if (i)
     return i;
   
-  unformat_init_command_line (&input, vm->argv);
+  unformat_init_command_line (&input, (char **)vm->argv);
   vm->init_functions_called = hash_create (0, /* value bytes */ 0);
   e = vlib_call_all_config_functions (vm, &input, 1 /* early */);
   if (e != 0)