summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2018-06-29 18:16:56 +0300
committerSergei Petrunia <psergey@askmonty.org>2018-06-29 18:16:56 +0300
commit36ea82617c1506532e863cb241296acc8b657243 (patch)
tree754f6c5e05bff6d58c2114214eb121966767c07d /sql
parent83bf267e0d386c35497f34c6ad7bd802c1c8de6b (diff)
downloadmariadb-git-36ea82617c1506532e863cb241296acc8b657243.tar.gz
Fix a typo a in the commit before the last one
in the "Adopt Debian's fix-FTBFS-on-GNU-Hurd.patch", DBUG_VOID_RETURN has been used instead of "return"
Diffstat (limited to 'sql')
-rw-r--r--sql/wsrep_binlog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/wsrep_binlog.cc b/sql/wsrep_binlog.cc
index 52934ff10cd..f8553d015aa 100644
--- a/sql/wsrep_binlog.cc
+++ b/sql/wsrep_binlog.cc
@@ -324,7 +324,7 @@ void wsrep_dump_rbr_buf(THD *thd, const void* rbr_buf, size_t buf_len)
if (len < 0)
{
WSREP_ERROR("snprintf error: %d, skipping dump.", len);
- DBUG_VOID_RETURN;
+ return;
}
char *filename= (char *)malloc(len++);