diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-14 14:11:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-14 14:11:32 +0000 |
commit | c4c87a92cf7006b064196abb4e4a5a084924622f (patch) | |
tree | c43028525305bb01234df45fe52fdd756cabd34d /plugins/AVS/src/utils.cpp | |
parent | ae97dfda8399af0fa7f6a43853a09c50663eecc9 (diff) |
fix for a typo
git-svn-id: http://svn.miranda-ng.org/main/trunk@12810 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AVS/src/utils.cpp')
-rw-r--r-- | plugins/AVS/src/utils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/AVS/src/utils.cpp b/plugins/AVS/src/utils.cpp index 5466b167ae..c0a90ee325 100644 --- a/plugins/AVS/src/utils.cpp +++ b/plugins/AVS/src/utils.cpp @@ -257,7 +257,8 @@ int GetFileHash(TCHAR* filename) remainder = (remainder << 1);
}
}
- } while (dwRead == 1024);
+ }
+ while (dwRead == 1024);
CloseHandle(hFile);
|