summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2019-03-25 23:58:04 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2019-03-25 23:58:04 +0100
commit4e583a276fa0efe67f0185604b062668db707af0 (patch)
tree8a342b28ca7cbe941ac43fcd82611309c761f2d6
parent35bc91e24aed0a07ffb2aec5497a7dda86f16430 (diff)
downloadmariadb-git-4e583a276fa0efe67f0185604b062668db707af0.tar.gz
Fixed compiler warning in connect engine
-rw-r--r--storage/connect/plugutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/plugutil.cpp b/storage/connect/plugutil.cpp
index 048f00be75f..6790e7eb45c 100644
--- a/storage/connect/plugutil.cpp
+++ b/storage/connect/plugutil.cpp
@@ -526,7 +526,7 @@ BOOL PlugSubSet(void *memp, uint size)
/***********************************************************************/
/* Use it to export a function that do throwing. */
/***********************************************************************/
-void *DoThrow(int n)
+static void *DoThrow(int n)
{
throw n;
} /* end of DoThrow */