aboutsummaryrefslogtreecommitdiff
path: root/src/lzma
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2025-07-03 09:27:16 +0200
committerLadislav Zezula <zezula@volny.cz>2025-07-03 09:27:16 +0200
commit486a7dd29f3bdf884d4be5588d9171daa5da1bae (patch)
tree95d9d099a84a3587412eecffd2485da99820916b /src/lzma
parentb41cda40f9c3fbdb802cf63e739425cd805eecaa (diff)
Replaced GetLastError with SErrGetLastError
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 7af1da2..17f70be 100644
--- a/src/lzma/C/Threads.c
+++ b/src/lzma/C/Threads.c
@@ -9,7 +9,7 @@
static WRes GetError()
{
- DWORD res = GetLastError();
+ DWORD res = SErrGetLastError();
return (res) ? (WRes)(res) : 1;
}