handler: avoid unnamed union

Unnamed unions appeared only in C11 standard. Don't use them to
increase portability.
This commit is contained in:
Dmitry Podgorny
2020-01-10 01:22:53 +02:00
parent 212df6d036
commit 0326e5c5e2
3 changed files with 43 additions and 43 deletions

View File

@@ -130,7 +130,7 @@ struct _xmpp_handlist_t {
char *name;
char *type;
};
};
} u;
};
#define MAX_DOMAIN_LEN 256