maint: use '\0'

This commit is contained in:
Edo 2023-03-07 12:19:16 +00:00 committed by GitHub
parent 30a7036dac
commit 0876ac3cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ namespace
*dst++ = *src;
}
}
*dst = 0;
*dst = '\0';
}
void build_os_path_for_thread(const char* base, const char* game, const char* qpath, char* ospath, game::native::FsThread thread)