Skip to content
Snippets Groups Projects
Commit f628feaf authored by alexander.lysikov's avatar alexander.lysikov
Browse files

fixed strfuncs_test warning

parent fb1d0129
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ void dap_str_array_test(void)
l_count++;
}
char **l_s_array_copy = dap_strdupv((const char*)l_s_array);
char **l_s_array_copy = dap_strdupv((const char**)l_s_array);
dap_assert_PIF(dap_str_countv(l_s_array) == l_count, "String split");
dap_assert_PIF(dap_str_countv(l_s_array_copy) == l_count, "String copy");
......
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