Index: trunk/src/flag.c =================================================================== --- trunk/src/flag.c (revision 37778) +++ trunk/src/flag.c (revision 37779) @@ -62,10 +62,10 @@ return 0; } -void pcb_flag_uninit(pcb_flag_t * f) +void pcb_flag_uninit(pcb_flag_t *f) { pcb_unknown_flag_t *u, *next; - for (u = f->unknowns; u != NULL; u = next) { + for(u = f->unknowns; u != NULL; u = next) { free(u->str); next = u->next; free(u); Index: trunk/src/flag.h =================================================================== --- trunk/src/flag.h (revision 37778) +++ trunk/src/flag.h (revision 37779) @@ -138,11 +138,9 @@ /* destroy flags: clear all bits and free fields */ void pcb_flag_uninit(pcb_flag_t *f); -#define pcb_no_flags() pcb_flag_make(0) +#define pcb_no_flags() pcb_flag_make(0) -/* --------------------------------------------------------------------------- - * some routines for flag setting, clearing, changing and testing - */ +/*** some routines for flag setting, clearing, changing and testing ***/ #define PCB_FLAG_SET(F,P) ((P)->Flags.f |= (F)) #define PCB_FLAG_CLEAR(F,P) ((P)->Flags.f &= (~(F))) #define PCB_FLAG_TEST(F,P) ((P)->Flags.f & (F) ? 1 : 0)