From 4a25a7740d62c9ec0318001c3f6d6b3ae01d96ad Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 13 Sep 2011 13:29:35 +0000 Subject: Fixed ZE specific compile warnings (Bug #55629) --- Zend/zend_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_stream.c') diff --git a/Zend/zend_stream.c b/Zend/zend_stream.c index 263fa869e2..88ef53bdb0 100644 --- a/Zend/zend_stream.c +++ b/Zend/zend_stream.c @@ -311,7 +311,7 @@ ZEND_API void zend_file_handle_dtor(zend_file_handle *fh TSRMLS_DC) /* {{{ */ fh->opened_path = NULL; } if (fh->free_filename && fh->filename) { - efree(fh->filename); + efree((char*)fh->filename); fh->filename = NULL; } } -- cgit v1.2.1