mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
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:
parent
83bf267e0d
commit
36ea82617c
1 changed files with 1 additions and 1 deletions
|
@ -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++);
|
||||
|
|
Loading…
Reference in a new issue