diff options
| author | Thies C. Arntzen <thies@php.net> | 2000-06-06 13:49:41 +0000 | 
|---|---|---|
| committer | Thies C. Arntzen <thies@php.net> | 2000-06-06 13:49:41 +0000 | 
| commit | 0e0f3eb0978b9a181a43363cbb251d02c05c2cc7 (patch) | |
| tree | c54047f41772bc92ea1141a2c2008f161bda846c /ext/recode/recode.c | |
| parent | 10eb67a3aac6cd78d69ed98a6fc1e1380df652ff (diff) | |
| download | php-git-0e0f3eb0978b9a181a43363cbb251d02c05c2cc7.tar.gz | |
bool -> int
Diffstat (limited to 'ext/recode/recode.c')
| -rw-r--r-- | ext/recode/recode.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/recode/recode.c b/ext/recode/recode.c index b0f1f4913f..5b63d37a51 100644 --- a/ext/recode/recode.c +++ b/ext/recode/recode.c @@ -110,7 +110,7 @@ PHP_FUNCTION(recode_string)  	char *r = NULL;  	pval **str;  	pval **req; -	bool  success; +	int success;  	ReSLS_FETCH();  	if (ZEND_NUM_ARGS() != 2 | 
