summaryrefslogtreecommitdiff
path: root/plugins/DbChecker
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-07-06 17:07:45 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-07-06 17:07:45 +0000
commit2b8bf3de025f81d869d78ba0fc043217a300212e (patch)
treea16f7319fa9c190bd9149990c2eab2c9f4e91238 /plugins/DbChecker
parentd159486b72a0d556f9df84dae75d2cf509c778eb (diff)
fix for wrong icon in dbchecker
git-svn-id: http://svn.miranda-ng.org/main/trunk@9710 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbChecker')
-rw-r--r--plugins/DbChecker/src/selectdb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DbChecker/src/selectdb.cpp b/plugins/DbChecker/src/selectdb.cpp
index 488eaee5ec..b0d07f458f 100644
--- a/plugins/DbChecker/src/selectdb.cpp
+++ b/plugins/DbChecker/src/selectdb.cpp
@@ -24,7 +24,7 @@ static bool CheckBroken(const TCHAR *ptszFullPath)
if (dblink == NULL || dblink->CheckDB == NULL)
return true;
- return dblink->grokHeader(ptszFullPath) == EGROKPRF_NOERROR;
+ return dblink->grokHeader(ptszFullPath) != EGROKPRF_NOERROR;
}
void OpenDatabase(HWND hdlg, INT iNextPage)