From: Jeff Mahoney Date: Thu, 28 Apr 2016 15:26:59 +0000 (-0400) Subject: Change type of struct xlat.val to uint64_t X-Git-Tag: v4.12~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9019cf4cf5ae6d1898c155799615cbb9663a680c;p=strace 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. --- 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; };