3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

Merge branch 'master' of https://github.com/z3prover/z3 into csp

This commit is contained in:
Nikolaj Bjorner 2018-10-22 07:25:39 -07:00
commit fac114872f

View file

@ -93,7 +93,7 @@ void format2ostream(std::ostream & out, char const* msg, va_list args) {
va_end(args_copy);
// +1 is for NUL termination.
buff.resize(msg_len + 1);
buff.resize(static_cast<unsigned>(msg_len + 1));
VPRF(buff.c_ptr(), buff.size(), msg, args);