[Pkg-owncloud-commits] [owncloud-client] 03/120: ownSql: Do not use sqlite3 method not present in older version
Sandro Knauß
hefee-guest at moszumanska.debian.org
Mon Aug 24 00:02:35 UTC 2015
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit b906c70a86eebfea25acad3792370c9cd60b4e3c
Author: Daniel Molkentin <danimo at owncloud.com>
Date: Fri Aug 7 10:53:18 2015 +0200
ownSql: Do not use sqlite3 method not present in older version
Was only used for debug output anyway and broke RHEL/CentOS6
---
src/libsync/ownsql.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libsync/ownsql.cpp b/src/libsync/ownsql.cpp
index d45630b..9245c86 100644
--- a/src/libsync/ownsql.cpp
+++ b/src/libsync/ownsql.cpp
@@ -137,7 +137,7 @@ void SqlDatabase::close()
if( _db ) {
SQLITE_DO(sqlite3_close(_db) );
if (_errId != SQLITE_OK) {
- qWarning() << "ERROR When closing DB" << _error << sqlite3_db_filename(_db, 0);
+ qWarning() << "ERROR When closing DB" << _error;
}
_db = 0;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list