diff options
author | Andi Gutmans <andi@php.net> | 2002-11-20 20:03:01 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-11-20 20:03:01 +0000 |
commit | b0528dbe5eb79d2aafad5b368fa5481fe2c3c0c1 (patch) | |
tree | c6c058036addc9a8d2aa5750fc86f3e45ca0b4ec /ext/bcmath/libbcmath/src/zero.c | |
parent | e6b7ab9db86710ca0c90d320bd43dcd4c2c06ed4 (diff) | |
download | php-git-b0528dbe5eb79d2aafad5b368fa5481fe2c3c0c1.tar.gz |
- Revert previous patch
Diffstat (limited to 'ext/bcmath/libbcmath/src/zero.c')
-rw-r--r-- | ext/bcmath/libbcmath/src/zero.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bcmath/libbcmath/src/zero.c b/ext/bcmath/libbcmath/src/zero.c index e21bb29252..dce77ba4aa 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 == BCG(_zero_)) return TRUE; + if (num == _zero_) return TRUE; /* Initialize */ count = num->n_len + num->n_scale; |