misc: pass NULL instead of 0 for pointer in variadic functions
[vpp.git] / src / vlib / unix / cli.c
index cb8aa9f..a647dd7 100644 (file)
@@ -2576,9 +2576,8 @@ more:
     {
       static u8 *lv;
       vec_reset_length (lv);
-      lv = format (lv, "%U[%d]: %v",
-                  format_timeval, 0 /* current bat-time */ ,
-                  0 /* current bat-format */ ,
+      lv = format (lv, "%U[%d]: %v", format_timeval,
+                  NULL /* current bat-format */, 0 /* current bat-time */,
                   cli_file_index, cf->current_command);
       if ((vec_len (cf->current_command) > 0) &&
          (cf->current_command[vec_len (cf->current_command) - 1] != '\n'))