summaryrefslogtreecommitdiff
path: root/ext/standard/math.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-10-24 19:15:40 +0000
committerMarcus Boerger <helly@php.net>2002-10-24 19:15:40 +0000
commit15b2e277a479175557dd964ad833eb005798d000 (patch)
tree80c3603d15d3fcd17b10b589e3ef3779d6d0b6d2 /ext/standard/math.c
parent67670560e4be002d96250d5402b07055ddef5d2e (diff)
downloadphp-git-15b2e277a479175557dd964ad833eb005798d000.tar.gz
fix compiler warning
Diffstat (limited to 'ext/standard/math.c')
-rw-r--r--ext/standard/math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/math.c b/ext/standard/math.c
index 219a269d24..dafaf05788 100644
--- a/ext/standard/math.c
+++ b/ext/standard/math.c
@@ -677,7 +677,7 @@ _php_math_basetolong(zval *arg, int base) {
PHPAPI int
_php_math_basetozval(zval *arg, int base, zval *ret) {
long num = 0;
- double fnum;
+ double fnum = 0;
int i;
int mode = 0;
char c, *s;