Browse Source

Fixed bug in ping cmdline debug output.

default 1 year ago
parent
commit
8cd79df272
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.c

+ 1 - 1
main.c

@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
 
         if (dbglevel) {
             xs *j = xs_json_dumps_pp(msg, 4);
-            printf("%s\n", msg);
+            printf("%s\n", j);
         }
 
         return 0;