Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/rarfilesource.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOctaneSnail <os@v12pwr.com>2012-02-04 17:09:26 +0400
committerOctaneSnail <os@v12pwr.com>2012-02-04 17:09:26 +0400
commitba906dfde047081a687c06f4b84d475efb86ceee (patch)
tree3bb4a892928887f805f6c8b40a4f20aa9d0e3c67
parent5d08f6248def515bb39e94f06271ff28f2df8ead (diff)
Fix typos in error messages.
-rw-r--r--File.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/File.cpp b/File.cpp
index 7029715..9e026a0 100644
--- a/File.cpp
+++ b/File.cpp
@@ -85,7 +85,7 @@ HRESULT File::SyncRead (LONGLONG llPosition, DWORD lLength, BYTE* pBuffer, LONG
if (!(o.hEvent = CreateEvent (NULL, FALSE, FALSE, NULL)))
{
- ErrorMsg (GetLastError (), L"CRFSOutputPin::SyncRead - CreateEvent)");
+ ErrorMsg (GetLastError (), L"CRFSOutputPin::SyncRead - CreateEvent");
return S_FALSE;
}
@@ -109,7 +109,7 @@ HRESULT File::SyncRead (LONGLONG llPosition, DWORD lLength, BYTE* pBuffer, LONG
}
if (!GetOverlappedResult (part->file, &o, &read, TRUE))
{
- ErrorMsg (GetLastError (), L"CRFSOutputPin::SyncRead - GetOverlappedResult)");
+ ErrorMsg (GetLastError (), L"CRFSOutputPin::SyncRead - GetOverlappedResult");
break;
}
lLength -= read;