Skip to content
Snippets Groups Projects
Commit 25a62e8d authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fix. The g_sys_dir_path_len variable did not specify the data type size_t.

parent a765ab99
No related branches found
No related tags found
1 merge request!3[*] Fix. The g_sys_dir_path_len variable did not specify the data type size_t.
......@@ -57,7 +57,7 @@ int main(int argc, const char * argv[])
#elif _WIN32
dap_sprintf(s_sys_dir_path, "%s/%s", regGetUsrPath(), dap_get_appname() );
#endif
g_sys_dir_path_len = strlen(g_sys_dir_path);
size_t g_sys_dir_path_len = strlen(g_sys_dir_path);
char * l_app_title = dap_strdup_printf("%s console interface",dap_get_appname());
......
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