mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-03 09:01:42 -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 enumeration *enumeration;
|
||||||
struct description *description;
|
struct description *description;
|
||||||
char character_data[8192];
|
char character_data[8192];
|
||||||
int character_data_length;
|
unsigned int character_data_length;
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue