diff options
Diffstat (limited to 'executor/common_linux.h')
| -rw-r--r-- | executor/common_linux.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/executor/common_linux.h b/executor/common_linux.h index 146984b3b..76f75c316 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -2947,7 +2947,7 @@ struct ipt_getinfo { struct ipt_get_entries { char name[32]; unsigned int size; - void* entrytable[XT_TABLE_SIZE / sizeof(void*)]; + uint64 entrytable[XT_TABLE_SIZE / sizeof(uint64)]; }; struct ipt_replace { @@ -2959,7 +2959,7 @@ struct ipt_replace { unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; - char entrytable[XT_TABLE_SIZE]; + uint64 entrytable[XT_TABLE_SIZE / sizeof(uint64)]; }; struct ipt_table_desc { @@ -3001,7 +3001,7 @@ struct arpt_getinfo { struct arpt_get_entries { char name[32]; unsigned int size; - void* entrytable[XT_TABLE_SIZE / sizeof(void*)]; + uint64 entrytable[XT_TABLE_SIZE / sizeof(uint64)]; }; struct arpt_replace { @@ -3013,7 +3013,7 @@ struct arpt_replace { unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; - char entrytable[XT_TABLE_SIZE]; + uint64 entrytable[XT_TABLE_SIZE / sizeof(uint64)]; }; struct arpt_table_desc { |
