diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-10-28 18:22:22 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-10-28 18:22:22 +0200 |
commit | 57f701f4a1b9b7da872509d7349d19c198ccb84e (patch) | |
tree | 7feb49b62b031efc300b01b86c77f9be89450640 | |
parent | 1ed4742c8938c67998c829dec90d82221f98cb94 (diff) | |
download | kit-57f701f4a1b9b7da872509d7349d19c198ccb84e.zip |
win32: Fix temp path
-rw-r--r-- | source/kit/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/kit/file.c b/source/kit/file.c index 10f4857..8fcf4fb 100644 --- a/source/kit/file.c +++ b/source/kit/file.c @@ -156,7 +156,7 @@ kit_str_builder_t kit_path_cache(kit_allocator_t *alloc) { DA_DESTROY(cache); #if defined(_WIN32) && !defined(__CYGWIN__) - cache = kit_get_env_("TEMP", alloc); + cache = kit_get_env(SZ("TEMP"), alloc); if (cache.size != 0) return cache; DA_DESTROY(cache); |