summaryrefslogtreecommitdiff
path: root/storage/connect
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2019-03-25 23:54:09 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2019-03-25 23:54:09 +0100
commit6b1e13387410be0c674d3048070bcc615a32eab3 (patch)
treee0099b68dcd52991ebe0b77df723ddd32dbdd9c3 /storage/connect
parent48d2141ba5e14c56173ef947da7141c455a62644 (diff)
downloadmariadb-git-6b1e13387410be0c674d3048070bcc615a32eab3.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 */