From 74cbb835b603d7925b31f79d60e37b731e404710 Mon Sep 17 00:00:00 2001 From: aleos Date: Fri, 29 May 2020 14:58:16 -0400 Subject: [PATCH] Fixes a compile error * Adds a missing semicolon for pre-renewal. --- src/common/sql.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/sql.cpp b/src/common/sql.cpp index bd460f028c..464769a4f9 100644 --- a/src/common/sql.cpp +++ b/src/common/sql.cpp @@ -1077,7 +1077,7 @@ void Sql_UpgradesChecker(Sql *sql_handle, e_sql_database schema) { std::string mode = "Renewal"; #else uint8 compiledMode = MODE_PRERENEWAL; - std::string mode = "Prerenewal" + std::string mode = "Prerenewal"; #endif if (compiledMode != update->mode) {