1 | --- parrot-svn/src/packfile/pf_items.c 2009-03-11 07:42:31.000000000 -0400 |
---|
2 | +++ parrot-andy/src/packfile/pf_items.c 2009-03-11 08:04:19.583620802 -0400 |
---|
3 | @@ -1370,13 +1370,13 @@ |
---|
4 | size_t i; |
---|
5 | mem_sys_memcopy(charcursor, s->strstart, s->bufused); |
---|
6 | charcursor += s->bufused; |
---|
7 | - /* Pad up to sizeof(opcode_t) boundary. */ |
---|
8 | - while ( (unsigned long) (charcursor - (char *) cursor) % sizeof(opcode_t)) { |
---|
9 | + /* Pad up to sizeof (opcode_t) boundary. */ |
---|
10 | + while ((unsigned long) (charcursor - (char *) cursor) % sizeof (opcode_t)) { |
---|
11 | *charcursor++ = 0; |
---|
12 | } |
---|
13 | } |
---|
14 | - PARROT_ASSERT(((unsigned long) (charcursor - (char *) cursor) % sizeof(opcode_t)) == 0); |
---|
15 | - cursor += (charcursor - (char *) cursor) / sizeof(opcode_t); |
---|
16 | + PARROT_ASSERT(((unsigned long) (charcursor - (char *) cursor) % sizeof (opcode_t)) == 0); |
---|
17 | + cursor += (charcursor - (char *) cursor) / sizeof (opcode_t); |
---|
18 | |
---|
19 | return cursor; |
---|
20 | } |
---|