diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-24 14:00:38 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-24 14:17:26 +0100 |
| commit | a0b97933735c746521e84213b74de9786be3f58a (patch) | |
| tree | 3bdbe09a1e4b08380206dbb5390d247f70b7ce70 | |
| parent | bc9850ed12045720bfcaa0e866e5e55c90d31b2b (diff) | |
Fix build.v1.0.4
| -rw-r--r-- | src/KM_fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_fileio.cpp b/src/KM_fileio.cpp index 5a8597b..040a5f1 100644 --- a/src/KM_fileio.cpp +++ b/src/KM_fileio.cpp @@ -97,7 +97,7 @@ do_stat(const char* path, fstat_t* stat_info) #ifdef KM_WIN32_UTF8 ByteString wb_filename; - Result_t result = utf8_to_wbstr(path, wb_filename); + utf8_to_wbstr(path, wb_filename); if ( _wstati64((wchar_t*)wb_filename.RoData(), stat_info) == (__int64)-1 ) #else if ( _stati64(path, stat_info) == (__int64)-1 ) |
