diff options
author | Franklin Wei <me@fwei.tk> | 2018-07-03 14:21:13 -0400 |
---|---|---|
committer | Franklin Wei <me@fwei.tk> | 2018-07-03 14:21:13 -0400 |
commit | cf207a90591da839248aeffa99cb47077113a7e3 (patch) | |
tree | 56c8750fc406a7654c9a4962b74e77431a87ffdd /iomt.h | |
parent | 0d128a7010c9279fdf3dd51adad848135aea5cda (diff) | |
download | csaa-cf207a90591da839248aeffa99cb47077113a7e3.zip csaa-cf207a90591da839248aeffa99cb47077113a7e3.tar.gz csaa-cf207a90591da839248aeffa99cb47077113a7e3.tar.bz2 csaa-cf207a90591da839248aeffa99cb47077113a7e3.tar.xz |
Fix warnings
Diffstat (limited to 'iomt.h')
-rw-r--r-- | iomt.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ static const struct iomt_node node_null = { 0, 0, { { 0 } } }; * and so on. */ struct iomt { - int mt_leafcount, mt_logleaves; /* mt_logleaves must equal 2^mt_leafcount */ + uint64_t mt_leafcount, mt_logleaves; /* mt_logleaves must equal 2^mt_leafcount */ bool in_memory; |