daemon: use . as storage path in windows

This commit is contained in:
Matthias Ringwald 2018-08-24 11:04:49 +02:00
parent fb4ddcf3a9
commit b6a1d7313d

View File

@ -1901,7 +1901,7 @@ int btstack_server_run(int tcp_flag){
// handle default init
if (!btstack_server_storage_path){
#ifdef _WIN32
btstack_server_storage_path = strdup("");
btstack_server_storage_path = strdup(".");
#else
btstack_server_storage_path = strdup("/tmp");
#endif