summaryrefslogtreecommitdiff
path: root/src/stage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stage.c')
-rw-r--r--src/stage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stage.c b/src/stage.c
index 2b0ee20..a1d081d 100644
--- a/src/stage.c
+++ b/src/stage.c
@@ -381,7 +381,7 @@ stage_t * stage_lookup_key(stage_t *stage, void *key)
assert(stage);
if (stage->lookup) {
- stage_t *hit = stage->lookup(stage, stage->object, key);
+ stage_t *hit = (stage_t *)stage->lookup(stage, stage->object, key);
if (hit)
return hit;
© All Rights Reserved