diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-07-24 17:57:08 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-07-24 17:57:08 +0000 |
commit | ccba5a84f3779625db470d6642a9f42fc0b8907b (patch) | |
tree | 782565487e41657325b53761cff232bd585b5510 /plugins/BasicHistory/src/Scheduler.cpp | |
parent | 9033485843f01979b47c1cf9d13413fbf2f91f35 (diff) |
BasicHistory - warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14680 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BasicHistory/src/Scheduler.cpp')
-rw-r--r-- | plugins/BasicHistory/src/Scheduler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/BasicHistory/src/Scheduler.cpp b/plugins/BasicHistory/src/Scheduler.cpp index fdd218fa75..4ac0220a21 100644 --- a/plugins/BasicHistory/src/Scheduler.cpp +++ b/plugins/BasicHistory/src/Scheduler.cpp @@ -864,7 +864,7 @@ void GetZipFileTime(const TCHAR *file, uLong *dt) /* calculate the CRC32 of a file,
because to encrypt a file, we need known the CRC32 of the file before */
-bool GetFileCrc(const TCHAR* filenameinzip, unsigned char* buf, unsigned long size_buf, unsigned long* result_crc)
+bool GetFileCrc(const TCHAR* filenameinzip, unsigned char* buf, unsigned long, unsigned long* result_crc)
{
unsigned long calculate_crc = 0;
bool error = true;
@@ -1258,7 +1258,7 @@ void CreatePath(const TCHAR *szDir) CreateDirectory( szTestDir, NULL );
}
-INT_PTR ExecuteTaskService(WPARAM wParam, LPARAM lParam)
+INT_PTR ExecuteTaskService(WPARAM wParam, LPARAM)
{
mir_cslock lck(Options::instance->criticalSection);
int taskNr = (int)wParam;
|