Fix two test cases on 32-bit architectures.

This commit is contained in:
Jung-uk Kim 2008-08-18 21:40:03 +00:00
parent 7e9608c858
commit b82a8cd81c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181855
2 changed files with 6 additions and 2 deletions

View File

@ -11,7 +11,9 @@ struct bpf_insn pc[] = {
};
/* Packet */
u_char pkt[0xdeadc0de];
u_char pkt[] = {
0x00,
};
/* Packet length seen on wire */
u_int wirelen = 0xdeadc0de;

View File

@ -12,7 +12,9 @@ struct bpf_insn pc[] = {
};
/* Packet */
u_char pkt[0xdeadc0de];
u_char pkt[] = {
0x00,
};
/* Packet length seen on wire */
u_int wirelen = 0xdeadc0de;