diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-06 17:07:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-06 17:07:45 +0000 |
commit | 2b8bf3de025f81d869d78ba0fc043217a300212e (patch) | |
tree | a16f7319fa9c190bd9149990c2eab2c9f4e91238 /plugins/DbChecker | |
parent | d159486b72a0d556f9df84dae75d2cf509c778eb (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.cpp | 2 |
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)
|