summaryrefslogtreecommitdiff
path: root/plugins/Db3x_mmap/src/dbtool
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-03-13 19:42:54 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-03-13 19:42:54 +0000
commit720783e4a86c5a89592847c79b4ab932f9ff6879 (patch)
tree1562c904cb15fa49c90002c7268510dccf8ede44 /plugins/Db3x_mmap/src/dbtool
parent1ad8eff2aba5649b8926bc040aad4917ce9156fe (diff)
fix for db_event_count in subs
git-svn-id: http://svn.miranda-ng.org/main/trunk@8598 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap/src/dbtool')
-rw-r--r--plugins/Db3x_mmap/src/dbtool/contactchain.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Db3x_mmap/src/dbtool/contactchain.cpp b/plugins/Db3x_mmap/src/dbtool/contactchain.cpp
index 979071fad4..f1ba3ebe61 100644
--- a/plugins/Db3x_mmap/src/dbtool/contactchain.cpp
+++ b/plugins/Db3x_mmap/src/dbtool/contactchain.cpp
@@ -70,7 +70,7 @@ LBL_FinishUp:
contactCount++;
phase++; first = 1;
- //fall thru
+ // fall thru
case 1:
ret = WorkSettingsChain(ofsDestThis, &dbc, first);
if (ret == ERROR_NO_MORE_ITEMS) {
@@ -79,7 +79,7 @@ LBL_FinishUp:
else if (ret) return ret;
else break;
- //fall thru
+ // fall thru
case 2:
ret = WorkEventChain(ofsDestThis, &dbc, first);
if (ret == ERROR_NO_MORE_ITEMS) {
@@ -88,7 +88,7 @@ LBL_FinishUp:
else if (ret) return ret;
else break;
- //fall thru
+ // fall thru
case 3:
if (WriteSegment(ofsDestThis, &dbc, sizeof(DBContact)) == WS_ERROR)
return ERROR_HANDLE_DISK_FULL;