Skip to content
Snippets Groups Projects
Commit 2f436716 authored by Roman Khlopkov's avatar Roman Khlopkov 🔜
Browse files

Merge branch '15029_15670_fixes_port' into 'develop'

15029_15670_fixes_port

See merge request !511
parents 03170a30 05733695
No related branches found
No related tags found
1 merge request!51115029_15670_fixes_port
Pipeline #51975 failed with stage
in 14 minutes and 2 seconds
...@@ -209,7 +209,7 @@ void json_print_value(json_object *obj, const char *key, int indent_level, bool ...@@ -209,7 +209,7 @@ void json_print_value(json_object *obj, const char *key, int indent_level, bool
printf(print_separator ? "%s, " : "%s", json_object_get_string(obj)); printf(print_separator ? "%s, " : "%s", json_object_get_string(obj));
break; break;
case json_type_int: case json_type_int:
printf("%d", json_object_get_int(obj)); printf("%" DAP_UINT64_FORMAT_U, json_object_get_int64(obj));
break; break;
case json_type_double: case json_type_double:
printf("%lf", json_object_get_double(obj)); printf("%lf", json_object_get_double(obj));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment