summaryrefslogtreecommitdiff
path: root/zend/symbol.h
diff options
context:
space:
mode:
authorRoland Eischer <r.eischer@certec.at>2015-03-06 16:48:37 +0100
committerRoland Eischer <r.eischer@certec.at>2015-03-06 16:48:37 +0100
commite20ae3eac334a3026b1dc86780854bfa0629dc08 (patch)
treef06c492ec6edd55153012876fe4c2a1fab2aa2ab /zend/symbol.h
parent086cb94ad6aee856fd51ad8d7116f4a1c485a926 (diff)
Added missing static cast of void* to DL_HANDLE
Diffstat (limited to 'zend/symbol.h')
-rw-r--r--zend/symbol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zend/symbol.h b/zend/symbol.h
index fcad9eb..6a470bd 100644
--- a/zend/symbol.h
+++ b/zend/symbol.h
@@ -99,7 +99,7 @@ public:
* @param name Name of the function
*/
Symbol(void *handle, const char *name) :
- _method(DL_FETCH_SYMBOL(handle, name)) {}
+ _method(DL_FETCH_SYMBOL((DL_HANDLE)handle, name)) {}
/**
* Destructor