aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2025-11-16 10:33:59 +0100
committerTristan Riehs <tristan.riehs@inria.fr>2025-11-16 10:33:59 +0100
commit112e72994f4423392769bc7a5fecee6ce9648010 (patch)
treeb9685280dfa0093cd903130fc0daae395f501d5d /src
parent42c62337eec1c5862201698da43f7e60a8b9851b (diff)
Fix typo
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index d19cffa..c15d98e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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;
}