diff options
author | default <nobody@localhost> | 2023-05-05 10:08:39 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-05-05 10:08:39 +0200 |
commit | 8cd79df272645da70cfe2980d6f9c0c33c13e452 (patch) | |
tree | c814958a4b2006afc604bc1bbeeb34197ddc3694 | |
parent | c1772cbca6d2562dadbc686fe481b88960398173 (diff) |
Fixed bug in ping cmdline debug output.
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |