summaryrefslogtreecommitdiffstats
path: root/src/sqlite3gen.cpp
diff options
context:
space:
mode:
authorAdrian Negreanu <adrian.m.negreanu@intel.com>2013-06-18 16:13:00 (GMT)
committerAdrian Negreanu <adrian.m.negreanu@intel.com>2013-06-18 16:13:00 (GMT)
commit16bd3df98a3e5d25d25a20e24a2868c84b8ba755 (patch)
treec76dcad78ea0c103e106144011d1b3257caed6f5 /src/sqlite3gen.cpp
parent96280c025e0e3a8ba70e711ce40791abc3bcb942 (diff)
downloadDoxygen-16bd3df98a3e5d25d25a20e24a2868c84b8ba755.zip
Doxygen-16bd3df98a3e5d25d25a20e24a2868c84b8ba755.tar.gz
Doxygen-16bd3df98a3e5d25d25a20e24a2868c84b8ba755.tar.bz2
sqlite3: fix misleading error message
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
Diffstat (limited to 'src/sqlite3gen.cpp')
-rw-r--r--src/sqlite3gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp
index 5d88385..43a1e76 100644
--- a/src/sqlite3gen.cpp
+++ b/src/sqlite3gen.cpp
@@ -255,7 +255,7 @@ static int step(sqlite3 *db, sqlite3_stmt *stmt,bool getRowId=FALSE)
int rc = sqlite3_step(stmt);
if (rc!=SQLITE_DONE && rc!=SQLITE_ROW)
{
- msg("failed count files: %s\n", sqlite3_errmsg(db));
+ msg("sqlite3_step failed: %s\n", sqlite3_errmsg(db));
}
if (getRowId) id = sqlite3_column_int(stmt, 0);
sqlite3_reset(stmt);