mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
scanner: Use uint32_t instead of uint
uint32_t is C99 defined stdint type Signed-off-by: Khem Raj <raj.khem@gmail.com> Reviewed-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
parent
c88ec7e291
commit
6750b47d9e
1 changed files with 1 additions and 1 deletions
|
|
@ -819,7 +819,7 @@ find_enumeration(struct protocol *protocol,
|
||||||
struct interface *i;
|
struct interface *i;
|
||||||
struct enumeration *e;
|
struct enumeration *e;
|
||||||
char *enum_name;
|
char *enum_name;
|
||||||
uint idx = 0, j;
|
uint32_t idx = 0, j;
|
||||||
|
|
||||||
for (j = 0; j + 1 < strlen(enum_attribute); j++) {
|
for (j = 0; j + 1 < strlen(enum_attribute); j++) {
|
||||||
if (enum_attribute[j] == '.') {
|
if (enum_attribute[j] == '.') {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue