summaryrefslogtreecommitdiff
path: root/sql/wsrep_utils.h
diff options
context:
space:
mode:
authorAlexey Botchkov <holyfoot@askmonty.org>2016-06-27 18:02:28 +0400
committerAlexey Botchkov <holyfoot@askmonty.org>2016-06-27 18:02:28 +0400
commit09d902d84befaf3b1d247c2fcb9706e3f83522f4 (patch)
tree4d27adfcf0fd51a2cd666de7207e4561006beb6b /sql/wsrep_utils.h
parent652e799a387f63a582254a68363e720e47db97e4 (diff)
downloadmariadb-git-09d902d84befaf3b1d247c2fcb9706e3f83522f4.tar.gz
MDEV-9618 solaris sparc build fails on 10.1.
Compiler on Sparc is strict about the 'const' modifiers in function declarations and definitions. Meaning they should be exactly same.
Diffstat (limited to 'sql/wsrep_utils.h')
-rw-r--r--sql/wsrep_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/wsrep_utils.h b/sql/wsrep_utils.h
index ed699eabec9..6025423fe7f 100644
--- a/sql/wsrep_utils.h
+++ b/sql/wsrep_utils.h
@@ -19,7 +19,7 @@
#include "wsrep_priv.h"
#include "wsrep_mysqld.h"
-unsigned int wsrep_check_ip (const char* addr, bool *is_ipv6);
+unsigned int wsrep_check_ip (const char* const addr, bool *is_ipv6);
size_t wsrep_guess_ip (char* buf, size_t buf_len);
namespace wsp {