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
|
@ -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…
Reference in New Issue
Block a user