From ed011f7919734a2ee330d590377635dda64f33cc Mon Sep 17 00:00:00 2001 From: Adam Fordsmand Date: Sat, 13 Nov 2021 12:49:12 +0100 Subject: [PATCH] Forgot to declare up top before merging. --- BlogDB.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BlogDB.c b/BlogDB.c index 9c05b8b..190cf20 100755 --- a/BlogDB.c +++ b/BlogDB.c @@ -24,7 +24,7 @@ static int PullAuthorData(char* strings[4], int authorID, MYSQL* con); static int ChangeAuthor(int postID, int authorID, MYSQL* con); static int TogglePost(int postID, MYSQL* con); static bool IsEnabled(int postID, MYSQL* con); - +static int* PostIDs(MYSQL* con); static int* ActivePostIDs(MYSQL* con); // Connects to the MariaDB database and returns the connection