diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2019-03-25 23:58:04 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2019-03-25 23:58:04 +0100 |
commit | 4e583a276fa0efe67f0185604b062668db707af0 (patch) | |
tree | 8a342b28ca7cbe941ac43fcd82611309c761f2d6 /storage | |
parent | 35bc91e24aed0a07ffb2aec5497a7dda86f16430 (diff) | |
download | mariadb-git-4e583a276fa0efe67f0185604b062668db707af0.tar.gz |
Fixed compiler warning in connect engine
Diffstat (limited to 'storage')
-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 */ |