From cbd5396cbb806148fe5031e49412f507b4e8ebe9 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 19 Jul 2004 07:35:41 +0000 Subject: [PATCH] fix build --- ext/oci8/oci8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 3f46fb4e330..43f3fbcebf3 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -880,7 +880,7 @@ static int _oci_bind_post_exec(void *data TSRMLS_DC) if (bind->indicator == -1) { /* NULL */ zval *val = bind->zval; - if (Z_TYPE_P(val) == IS_STRING)) { + if (Z_TYPE_P(val) == IS_STRING) { *Z_STRVAL_P(val) = '\0'; /* XXX avoid warning in debug mode */ } zval_dtor(val);