diff options
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ static int table_next_id(sqlite3 *db, const char *table) rc = sqlite3_exec(db, sql, table_next_id_callback, &last_id, NULL); sqlite3_check(rc, db); assert(last_id >= 0); - printf("%s: debug: last if for table \"%s\" is %d\n", __func__, table, last_id); + printf("%s: debug: last id for table \"%s\" is %d\n", __func__, table, last_id); return last_id + 1; } |
