From 9019cf4cf5ae6d1898c155799615cbb9663a680c Mon Sep 17 00:00:00 2001 From: Jeff Mahoney Date: Thu, 28 Apr 2016 11:26:59 -0400 Subject: [PATCH] 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 . (struct xlat): Change type of val to uint64_t. --- xlat.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xlat.h b/xlat.h index 9e68a17a..64141b3e 100644 --- a/xlat.h +++ b/xlat.h @@ -1,7 +1,9 @@ #ifndef STRACE_XLAT_H +# include + struct xlat { - unsigned int val; + uint64_t val; const char *str; };