Old (not so smart) compiler warns for uninitialized variable

This commit is contained in:
Willem Toorop 2017-06-22 12:48:22 +02:00
parent 69b3f6f558
commit 2962baa050
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ static inline int ta_iter_done(ta_iter *ta)
static ta_iter *ta_iter_next(ta_iter *ta)
{
yxml_ret_t r;
yxml_ret_t r = YXML_OK;
yxml_t ta_x;
const char *ta_start;
int level;