--- parrot-svn/src/packfile/pf_items.c 2009-03-11 07:42:31.000000000 -0400 +++ parrot-andy/src/packfile/pf_items.c 2009-03-11 08:04:19.583620802 -0400 @@ -1370,13 +1370,13 @@ size_t i; mem_sys_memcopy(charcursor, s->strstart, s->bufused); charcursor += s->bufused; - /* Pad up to sizeof(opcode_t) boundary. */ - while ( (unsigned long) (charcursor - (char *) cursor) % sizeof(opcode_t)) { + /* Pad up to sizeof (opcode_t) boundary. */ + while ((unsigned long) (charcursor - (char *) cursor) % sizeof (opcode_t)) { *charcursor++ = 0; } } - PARROT_ASSERT(((unsigned long) (charcursor - (char *) cursor) % sizeof(opcode_t)) == 0); - cursor += (charcursor - (char *) cursor) / sizeof(opcode_t); + PARROT_ASSERT(((unsigned long) (charcursor - (char *) cursor) % sizeof (opcode_t)) == 0); + cursor += (charcursor - (char *) cursor) / sizeof (opcode_t); return cursor; }