cast error

This commit is contained in:
Harald Radi 2001-06-24 21:19:49 +00:00
parent 5f51da8c58
commit 22d42820b7
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ typedef struct comval_ {
#define RETURN_COM(o) RETVAL_COM(o) \
return;
#define ALLOC_COM(z) (z) = emalloc(sizeof(comval))
#define ALLOC_COM(z) (z) = (comval *) emalloc(sizeof(comval))
#define IS_COM php_COM_get_le_comval()
#define C_HASTLIB(x) ((x)->typelib)

View File

@ -41,7 +41,7 @@ typedef struct comval_ {
#define RETURN_COM(o) RETVAL_COM(o) \
return;
#define ALLOC_COM(z) (z) = emalloc(sizeof(comval))
#define ALLOC_COM(z) (z) = (comval *) emalloc(sizeof(comval))
#define IS_COM php_COM_get_le_comval()
#define C_HASTLIB(x) ((x)->typelib)