diff options
Diffstat (limited to 'src/sqliteinterface.cpp')
-rw-r--r-- | src/sqliteinterface.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteinterface.cpp b/src/sqliteinterface.cpp index e59fd8a..7cf14dc 100644 --- a/src/sqliteinterface.cpp +++ b/src/sqliteinterface.cpp @@ -69,8 +69,7 @@ void SqliteInterface::createTables() { void SqliteInterface::saveInstance(const char *uri, float health, const char *location) { char *errmsg = 0; - char *sqlExec = sqlite3_mprintf("REPLACE INTO INSTANCES VALUES(%Q, '%.3f', %Q);", uri, health, location); - int rc = sqlite3_exec(db, sqlExec, callback, 0, &errmsg); + int rc = sqlite3_exec(db, sqlite3_mprintf("REPLACE INTO INSTANCES VALUES(%Q, '%.3f', %Q);", uri, health, location), callback, 0, &errmsg); if( rc != SQLITE_OK ){ fprintf(stderr, "SQL error: %s\n", errmsg); sqlite3_free(errmsg); |