Compare commits

...

2 Commits

Author SHA1 Message Date
69bf57ed38 Merge branch 'master' of https://git.lain.church/emil/probotic 2023-08-04 15:53:41 +02:00
175126808b fixed MACRO blunder 2023-08-04 15:53:12 +02:00

View File

@ -67,7 +67,7 @@ VARDECL sqlite3 * connection = NULL;
DECL int DECL int
api_init(void) api_init(void)
{ {
DBERR(sqlite3_open_v2(db, &connection, SQLITE_OPEN_READONLY, NULL)); DBERR(sqlite3_open_v2(db, &connection, SQLITE_OPEN_READWRITE, NULL));
// dont you fucking dare to remove this spacing // dont you fucking dare to remove this spacing
DBERR(stmt_prepare(remind_stmt)); DBERR(stmt_prepare(remind_stmt));
DBERR(stmt_prepare(set_repo_stmt)); DBERR(stmt_prepare(set_repo_stmt));