1 --- http-parser-2.9.4/test.c.orig ::
2 +++ http-parser-2.9.4/test.c ::
4 printf("http_parser v%u.%u.%u (0x%06lx)\n", major, minor, patch, version);
6 printf("sizeof(http_parser) = %u\n", (unsigned int)sizeof(http_parser));
7 - assert(sizeof(http_parser) == 4 + 4 + 8 + 2 + 2 + 4 + sizeof(void *));
8 + //// On sparcv7, the field alignment/padding will result http_parser
9 + //// to be 32 bytes, yet pointer size is still 32-bit.
10 + //// assert(sizeof(http_parser) == 4 + 4 + 8 + 2 + 2 + 4 + sizeof(void *));