diff options
Diffstat (limited to 'ext/bcmath/libbcmath/src/str2num.c')
-rw-r--r-- | ext/bcmath/libbcmath/src/str2num.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bcmath/libbcmath/src/str2num.c b/ext/bcmath/libbcmath/src/str2num.c index 25583d187c..210a7d89ea 100644 --- a/ext/bcmath/libbcmath/src/str2num.c +++ b/ext/bcmath/libbcmath/src/str2num.c @@ -65,7 +65,7 @@ bc_str2num (num, str, scale) while (isdigit((int)*ptr)) ptr++, strscale++; /* digits */ if ((*ptr != '\0') || (digits+strscale == 0)) { - *num = bc_copy_num (BCG(_zero_)); + *num = bc_copy_num (_zero_); return; } |