From 1b44de1b140c2155dde5c42172e4d9df2d43e843 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 24 Nov 2013 21:45:52 +0000 Subject: mode code cleaning for mmap git-svn-id: http://svn.miranda-ng.org/main/trunk@6982 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Db3x_mmap/src/dbcache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/Db3x_mmap/src/dbcache.cpp') diff --git a/plugins/Db3x_mmap/src/dbcache.cpp b/plugins/Db3x_mmap/src/dbcache.cpp index 8862c7192f..7f07540b56 100644 --- a/plugins/Db3x_mmap/src/dbcache.cpp +++ b/plugins/Db3x_mmap/src/dbcache.cpp @@ -79,7 +79,7 @@ void CDb3Mmap::DBMoveChunk(DWORD ofsDest,DWORD ofsSource,int bytes) PBYTE CDb3Mmap::DBRead(DWORD ofs,int bytesRequired,int *bytesAvail) { // buggy read - if (ofs>= m_dwFileSize) { + if (ofs >= m_dwFileSize) { //log2("read from outside %d@%08x",bytesRequired,ofs); if (bytesAvail != NULL) *bytesAvail = m_ChunkSize; return m_pNull; -- cgit v1.2.3