summaryrefslogtreecommitdiff
path: root/ext/bcmath/libbcmath/src/zero.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-11-20 19:48:12 +0000
committerAndi Gutmans <andi@php.net>2002-11-20 19:48:12 +0000
commite6b7ab9db86710ca0c90d320bd43dcd4c2c06ed4 (patch)
tree93d192743b05e18f3402a8e131b0b4009b180f9d /ext/bcmath/libbcmath/src/zero.c
parent33d0e4e1fbacd3acce5fab6bd3cc4c120223c46f (diff)
downloadphp-git-e6b7ab9db86710ca0c90d320bd43dcd4c2c06ed4.tar.gz
- Intermediate commit which works on making bcmath thread-safe.
Diffstat (limited to 'ext/bcmath/libbcmath/src/zero.c')
-rw-r--r--ext/bcmath/libbcmath/src/zero.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bcmath/libbcmath/src/zero.c b/ext/bcmath/libbcmath/src/zero.c
index dce77ba4aa..e21bb29252 100644
--- a/ext/bcmath/libbcmath/src/zero.c
+++ b/ext/bcmath/libbcmath/src/zero.c
@@ -48,7 +48,7 @@ bc_is_zero (num)
char *nptr;
/* Quick check. */
- if (num == _zero_) return TRUE;
+ if (num == BCG(_zero_)) return TRUE;
/* Initialize */
count = num->n_len + num->n_scale;