diff options
| author | Andrey Hristov <andrey@php.net> | 2011-08-02 15:30:58 +0000 | 
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 2011-08-02 15:30:58 +0000 | 
| commit | 1a5b1da9c103f41aa45fb79182bd938a6adbc1c8 (patch) | |
| tree | f53f6fa01eec92ade43f9c3cb72d5466c1e3c20f | |
| parent | a7fd79b9483edb8a2c470f190437551613370c22 (diff) | |
| download | php-git-1a5b1da9c103f41aa45fb79182bd938a6adbc1c8.tar.gz | |
Remove a warning by explicitly compiling out a non-used variable
| -rw-r--r-- | ext/mysqli/mysqli_api.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index e5fc756a37..041875480c 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -2237,7 +2237,9 @@ PHP_FUNCTION(mysqli_stmt_attr_set)  	MY_STMT	*stmt;  	zval	*mysql_stmt;  	long	mode_in; +#if MYSQL_VERSION_ID >= 50107  	my_bool	mode_b; +#endif  	ulong	mode;  	ulong	attr;  	void	*mode_p; | 
