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"
This commit is contained in:
Sergei Petrunia 2018-06-29 18:16:56 +03:00
parent 83bf267e0d
commit 36ea82617c

View file

@ -324,7 +324,7 @@ void wsrep_dump_rbr_buf(THD *thd, const void* rbr_buf, size_t buf_len)
if (len < 0) if (len < 0)
{ {
WSREP_ERROR("snprintf error: %d, skipping dump.", len); WSREP_ERROR("snprintf error: %d, skipping dump.", len);
DBUG_VOID_RETURN; return;
} }
char *filename= (char *)malloc(len++); char *filename= (char *)malloc(len++);