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

[*] Compiler warnings fix

parent 38cc5603
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ PyObject *python_get_config_item(dap_config_t* a_config, const char *a_section,
}
case DAP_CONFIG_ITEM_ARRAY: {
uint16_t l_values_count = 0;
char **l_values = dap_config_get_array_str(a_config, a_section, a_key, &l_values_count);
const char **l_values = dap_config_get_array_str(a_config, a_section, a_key, &l_values_count);
PyObject *obj_list = PyList_New(l_values_count);
for (uint16_t i = 0; i < l_values_count; i++) {
const char *l_value = l_values[i];
......
Subproject commit 55dcc5d64f087b9bb6123ea32462e793e77d9a9f
Subproject commit a2ddc1b21683fcc069b2ca251dae90b319bfddfe
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