diff options
author | Monty <monty@mariadb.org> | 2019-03-14 12:14:21 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2019-03-14 12:14:21 +0200 |
commit | f2f40a17efbb46341114b77310acb0d8113bb6bc (patch) | |
tree | e0901dd5f43d51cd992a43908f4df53ceae67d01 /storage/connect | |
parent | d3afdb1e8f0ab5d2d5257ee931fe5d4d2ed82ced (diff) | |
download | mariadb-git-f2f40a17efbb46341114b77310acb0d8113bb6bc.tar.gz |
Fixed compiler warning in connect engine
Diffstat (limited to 'storage/connect')
-rw-r--r-- | storage/connect/plugutil.cpp | 2 |
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 */ |