aboutsummaryrefslogtreecommitdiff
path: root/src/lzma
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2025-08-06 09:34:58 +0200
committerLadislav Zezula <zezula@volny.cz>2025-08-06 09:34:58 +0200
commitdb410fd564af358cb7c1e2e72cdbaeaeef510e09 (patch)
treecbe34ab3d2d2c7ab784ba890b7d2a3436bb6795b /src/lzma
parent65582d5649ce19afcac9fde06804c7f9ab3e2716 (diff)
Fixed renaming files vs file locale
Diffstat (limited to 'src/lzma')
-rw-r--r--src/lzma/C/Threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lzma/C/Threads.c b/src/lzma/C/Threads.c
index 17f70be..7af1da2 100644
--- a/src/lzma/C/Threads.c
+++ b/src/lzma/C/Threads.c
@@ -9,7 +9,7 @@
static WRes GetError()
{
- DWORD res = SErrGetLastError();
+ DWORD res = GetLastError();
return (res) ? (WRes)(res) : 1;
}