eval/typval_encode: Silence then/else equivalence warning

This commit is contained in:
ZyX 2017-04-16 19:51:35 +03:00
parent dd5b0cc17a
commit d70a0f6895

View File

@ -489,7 +489,7 @@ static int _TYPVAL_ENCODE_CONVERT_ONE_VALUE(
}
if (is_string) {
TYPVAL_ENCODE_CONV_STR_STRING(tv, buf, len);
} else {
} else { // -V523
TYPVAL_ENCODE_CONV_STRING(tv, buf, len);
}
xfree(buf);