Change type of struct xlat.val to uint64_t

Some ioctls have flags fields that are 64-bit.  A 32-bit val means
these flags will never be matched or printed.

* xlat.h: Include <stdint.h>.
(struct xlat): Change type of val to uint64_t.
This commit is contained in:
Jeff Mahoney 2016-04-28 11:26:59 -04:00 committed by Dmitry V. Levin
parent 9ae46690bd
commit 9019cf4cf5

4
xlat.h
View File

@ -1,7 +1,9 @@
#ifndef STRACE_XLAT_H
# include <stdint.h>
struct xlat {
unsigned int val;
uint64_t val;
const char *str;
};