Skip to content
Snippets Groups Projects
Commit 7bb0a2b8 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

Merge branch 'features-2680' into 'master'

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

See merge request !3
parents a765ab99 25a62e8d
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[]) ...@@ -57,7 +57,7 @@ int main(int argc, const char * argv[])
#elif _WIN32 #elif _WIN32
dap_sprintf(s_sys_dir_path, "%s/%s", regGetUsrPath(), dap_get_appname() ); dap_sprintf(s_sys_dir_path, "%s/%s", regGetUsrPath(), dap_get_appname() );
#endif #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()); 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