diff options
author | Ladislav Zezula <zezula@volny.cz> | 2025-07-03 09:27:16 +0200 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2025-07-03 09:27:16 +0200 |
commit | 486a7dd29f3bdf884d4be5588d9171daa5da1bae (patch) | |
tree | 95d9d099a84a3587412eecffd2485da99820916b /src/lzma/C | |
parent | b41cda40f9c3fbdb802cf63e739425cd805eecaa (diff) |
Replaced GetLastError with SErrGetLastError
Diffstat (limited to 'src/lzma/C')
-rw-r--r-- | src/lzma/C/Threads.c | 2 |
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; } |