Branch: Tag:

2012-12-30

2012-12-30 15:37:27 by Jonas Walldén <jonasw@roxen.com>

Wrap unused parameters in UNUSED(), and debug-only parameters in DEBUGUSED(), to cut
down on compiler warnings. The macro also renames parameters to catch accidental use.
(There are more places to clean up but I don't want to modify code that isn't compiling
on my machine.)

55:    int mode;   };    - static void f_hp_init( struct object *o ) + static void f_hp_init( struct object *UNUSED(o) )   {    THP->headers = NULL;    THP->pnt = NULL;
65:    THP->mode = 0;   }    - static void f_hp_exit( struct object *o ) + static void f_hp_exit( struct object *UNUSED(o) )   {    if( THP->headers )    free( THP->headers );