MXS-2020 Replace ss[_info]_dassert with mxb_assert[_message]

This commit is contained in:
Johan Wikman
2018-08-22 09:59:02 +03:00
parent b1e405442f
commit 3f53eddbde
161 changed files with 1640 additions and 1643 deletions

View File

@ -103,7 +103,7 @@ uint64_t mxs_leint_value(const uint8_t* c)
}
else
{
ss_dassert(*c == 0xff);
mxb_assert(*c == 0xff);
MXS_ERROR("Unexpected length encoding '%x' encountered when reading "
"length-encoded integer.", *c);
}
@ -302,7 +302,7 @@ bool mxs_mysql_trim_quotes(char *s)
--end;
}
ss_dassert(end > i);
mxb_assert(end > i);
char quote;