From 40d0909b75bf90bde24bd67d64e8ae8f9a79e290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 8 Feb 2021 11:55:34 +0100 Subject: [PATCH] Fix typo #3278:wq --- include/proxysql_debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/proxysql_debug.h b/include/proxysql_debug.h index 4e60918df..56ed7188d 100644 --- a/include/proxysql_debug.h +++ b/include/proxysql_debug.h @@ -112,7 +112,7 @@ extern int gdbg; #define ASSERT_SQLITE_OK(rc, db) \ do { \ if (rc!=SQLITE_OK) { \ - proxy_error("SQLite3 error with return corde %d. Error message: %s. Shutting down.\n", rc, db?(*proxy_sqlite3_errmsg)(db->get_db()):"The pointer to sqlite3 database is null. Cannot get error message."); \ + proxy_error("SQLite3 error with return code %d. Error message: %s. Shutting down.\n", rc, db?(*proxy_sqlite3_errmsg)(db->get_db()):"The pointer to sqlite3 database is null. Cannot get error message."); \ assert(0); \ } \ } while(0)