summaryrefslogtreecommitdiff
path: root/ext/mssql
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2001-07-11 12:42:25 +0000
committerThies C. Arntzen <thies@php.net>2001-07-11 12:42:25 +0000
commit0ef0f8e32bd509161a5113081f2137cd11313f3f (patch)
tree20b63b848fd3590d36f819221bdc057ae81be427 /ext/mssql
parent07ea0684547d1bb701c3a7db95a7d9802500025d (diff)
downloadphp-git-0ef0f8e32bd509161a5113081f2137cd11313f3f.tar.gz
ZVAL_BOOL(v,0) -> ZVAL_FALSE(v)
Diffstat (limited to 'ext/mssql')
-rw-r--r--ext/mssql/php_mssql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c
index 3ac1e3bc05..1e815f0b5d 100644
--- a/ext/mssql/php_mssql.c
+++ b/ext/mssql/php_mssql.c
@@ -829,7 +829,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
result->type = IS_STRING;
} else {
php_error(E_WARNING,"MS SQL: column %d has unknown data type (%d)", offset, coltype(offset));
- ZVAL_BOOL(result, 0);
+ ZVAL_FALSE(result);
}
}
}
@@ -871,7 +871,7 @@ static void php_mssql_get_column_content_without_type(mssql_link *mssql_ptr,int
result->type = IS_STRING;
} else {
php_error(E_WARNING,"MS SQL: column %d has unknown data type (%d)", offset, coltype(offset));
- ZVAL_BOOL(result, 0);
+ ZVAL_FALSE(result);
}
}