diff options
author | Andi Gutmans <andi@php.net> | 2003-02-04 21:07:40 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2003-02-04 21:07:40 +0000 |
commit | 8603feb6facaf72f94a719f111cfe9a6d15c8b6a (patch) | |
tree | ef0cdbf58169be70fc28e1f8f970fd28eb80e69e /ext/bcmath/bcmath.c | |
parent | 1af77be5fd98a164ae9873ed2e382db0953251fa (diff) | |
download | php-git-8603feb6facaf72f94a719f111cfe9a6d15c8b6a.tar.gz |
- Please follow coding standards (this isn't java :)
Diffstat (limited to 'ext/bcmath/bcmath.c')
-rw-r--r-- | ext/bcmath/bcmath.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index f3a4d7421c..74e5f89c5a 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -113,7 +113,8 @@ PHP_MINFO_FUNCTION(bcmath) /* {{{ php_str2num Convert to bc_num detecting scale */ -static void php_str2num(bc_num *num, char *str TSRMLS_DC) { +static void php_str2num(bc_num *num, char *str TSRMLS_DC) +{ char *p; if (!(p = strchr(str, '.'))) { |