aboutsummaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorgotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-06-13 15:41:38 +0000
committergotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-06-13 15:41:38 +0000
commit6dc9d363f149eebe9fd5a0c7c7e9761e09cca9c5 (patch)
treeb15a43d6855d941c1a38a2c8c19b9df36ff7974b /action.c
parent7da191e7673d26b2b1573546a81a2594b0a57774 (diff)
downloaddzen-6dc9d363f149eebe9fd5a0c7c7e9761e09cca9c5.tar.gz
dzen-6dc9d363f149eebe9fd5a0c7c7e9761e09cca9c5.zip
warnings
git-svn-id: http://dzen.googlecode.com/svn/trunk@88 f2baff5b-bf2c-0410-a398-912abdc3d8b2
Diffstat (limited to 'action.c')
-rw-r--r--action.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/action.c b/action.c
index 9fb400e..a8f3f70 100644
--- a/action.c
+++ b/action.c
@@ -91,7 +91,7 @@ add_handler(long evid, int hpos, void * hcb) {
while(item) {
if(item->id == evid) {
item->action[hpos] = emalloc(sizeof(As));
- item->action[hpos]->handler = hcb;
+ item->action[hpos]->handler = (handlerf) hcb;
break;
}
item = item->next;
@@ -164,15 +164,15 @@ get_ev_id(char *evname) {
return -1;
}
-void *
+handlerf
get_action_handler(char *acname) {
int i;
for(i=0; ac_lookup_table[i].name; i++) {
if(strcmp(ac_lookup_table[i].name, acname) == 0)
- return ac_lookup_table[i].handler;
+ return (handlerf) ac_lookup_table[i].handler;
}
- return (void *)NULL;
+ return (handlerf)NULL;
}