aboutsummaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'action.c')
-rw-r--r--action.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/action.c b/action.c
index 8923017..b6564fb 100644
--- a/action.c
+++ b/action.c
@@ -78,13 +78,13 @@ new_event(long evid) {
newitem = emalloc(sizeof (ev_list));
newitem->id = evid;
item->next = newitem;
- newitem->next= NULL;
+ newitem->next = NULL;
}
return 0;
}
void
-add_handler(long evid, int hpos, void * hcb) {
+add_handler(long evid, int hpos, void* hcb) {
ev_list *item;
item = head;