mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
scanner: fix a signedness warning
Trivial fix to a warning: comparison between signed and unsigned integer expressions Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
This commit is contained in:
parent
c2a405be5a
commit
03c40a8c99
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ struct parse_context {
|
|||
struct enumeration *enumeration;
|
||||
struct description *description;
|
||||
char character_data[8192];
|
||||
int character_data_length;
|
||||
unsigned int character_data_length;
|
||||
};
|
||||
|
||||
static char *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue