diff options
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
|