diff options
Diffstat (limited to 'include/set-hooks.h')
-rw-r--r-- | include/set-hooks.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/set-hooks.h b/include/set-hooks.h index f4d7246567..709f4c0a61 100644 --- a/include/set-hooks.h +++ b/include/set-hooks.h @@ -40,12 +40,12 @@ /* Run all the functions hooked on the set called NAME. Each function is called like this: `function ARGS'. */ -# define RUN_HOOK(NAME, ARGS) \ -do { \ - void (*const *ptr) (void); \ - for (ptr = symbol_set_first_element (NAME); \ - ! symbol_set_end_p (NAME, ptr); ++ptr) \ - (*(__##NAME##_hook_function_t *) *ptr) ARGS; \ +# define RUN_HOOK(NAME, ARGS) \ +do { \ + void *const *__unbounded ptr; \ + for (ptr = symbol_set_first_element (NAME); \ + ! symbol_set_end_p (NAME, ptr); ++ptr) \ + (*(__##NAME##_hook_function_t *) *ptr) ARGS; \ } while (0) /* Define a hook variable with NAME and PROTO, and a function called RUNNER |