diff --git a/src/mirall/syncjournaldb.cpp b/src/mirall/syncjournaldb.cpp index 4209f143d..96d3c30de 100644 --- a/src/mirall/syncjournaldb.cpp +++ b/src/mirall/syncjournaldb.cpp @@ -50,7 +50,7 @@ void SyncJournalDb::startTransaction() { if( _transaction == 0 ) { if( !_db.transaction() ) { - qDebug() << "ERROR commiting to the database: " << _db.lastError().text(); + qDebug() << "ERROR committing to the database: " << _db.lastError().text(); return; } _transaction = 1; @@ -64,7 +64,7 @@ void SyncJournalDb::commitTransaction() { if( _transaction == 1 ) { if( ! _db.commit() ) { - qDebug() << "ERROR commiting to the database: " << _db.lastError().text(); + qDebug() << "ERROR committing to the database: " << _db.lastError().text(); return; } _transaction = 0;