summaryrefslogtreecommitdiff
path: root/storage/connect
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2019-03-14 12:14:21 +0200
committerMonty <monty@mariadb.org>2019-03-14 12:14:21 +0200
commitf2f40a17efbb46341114b77310acb0d8113bb6bc (patch)
treee0901dd5f43d51cd992a43908f4df53ceae67d01 /storage/connect
parentd3afdb1e8f0ab5d2d5257ee931fe5d4d2ed82ced (diff)
downloadmariadb-git-f2f40a17efbb46341114b77310acb0d8113bb6bc.tar.gz
Fixed compiler warning in connect engine
Diffstat (limited to 'storage/connect')
-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 */