From 70ac69494f0440eaf98d97fac890b978eaa4f142 Mon Sep 17 00:00:00 2001 From: oteffahi <70609372+oteffahi@users.noreply.github.com> Date: Sun, 14 Apr 2024 22:51:16 +0200 Subject: [PATCH] Fix parameter in error message Co-authored-by: Alexander --- examples/parse_args.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/parse_args.h b/examples/parse_args.h index 51d6757d5..dac3b98db 100644 --- a/examples/parse_args.h +++ b/examples/parse_args.h @@ -162,7 +162,7 @@ void parse_zenoh_json_list_config(int argc, char** argv, const char* opt, const printf( "Couldn't insert value `%s` in configuration at `%s`\n`%s` is either not a JSON-serialized list of " "strings, or values within the list do not respect expected format for `%s`\n", - json_list, json_list, json_list, config_key); + json_list, config_key, json_list, config_key); free(json_list); exit(-1); }