1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-07 20:25:08 +02:00

Use ASSERT() instead of assert().

This commit is contained in:
Gunnar Beutner 2013-08-02 10:11:48 +02:00
parent bd5e452c6f
commit 079567ea72

@ -358,7 +358,7 @@ void MysqlDbConnection::ExecuteQuery(const DbQuery& query)
}
if ((query.Type & DbQueryInsert) && (query.Type & DbQueryUpdate)) {
assert(query.Object);
ASSERT(query.Object);
if (GetInsertID(query.Object).IsValid())
type = DbQueryUpdate;