diff options
author | Ladislav Zezula <zezula-at-volny-dot-cz> | 2018-11-08 17:06:12 +0100 |
---|---|---|
committer | Ladislav Zezula <zezula-at-volny-dot-cz> | 2018-11-08 17:06:12 +0100 |
commit | 17d51a8256d1d1dbab5fd7000ee5f4f31b74d338 (patch) | |
tree | 08055be5b9693cc052ae65afec12c2e24d438241 /src/FileStream.cpp | |
parent | f35d106059accbddaa602b6525f9542746b2c2b7 (diff) |
* New feature: Force add listfile
Diffstat (limited to 'src/FileStream.cpp')
-rw-r--r-- | src/FileStream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FileStream.cpp b/src/FileStream.cpp index 84f36c0..514a683 100644 --- a/src/FileStream.cpp +++ b/src/FileStream.cpp @@ -41,9 +41,9 @@ DWORD GetLastError() return nLastError;
}
-void SetLastError(DWORD nError)
+void SetLastError(DWORD dwErrCode)
{
- nLastError = nError;
+ nLastError = dwErrCode;
}
#endif
|