summaryrefslogtreecommitdiff
path: root/ext/gmp
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-01-03 01:22:58 -0800
committerStanislav Malyshev <stas@php.net>2015-01-10 15:07:38 -0800
commitb7a7b1a624c97945c0aaa49d46ae996fc0bdb6bc (patch)
tree0e09490075ee4f9a75a77ef4168d8ee254c52e5b /ext/gmp
parent773c8b0c092a0e9ad5c5548815bcb9991d54d5c1 (diff)
downloadphp-git-b7a7b1a624c97945c0aaa49d46ae996fc0bdb6bc.tar.gz
trailing whitespace removal
Diffstat (limited to 'ext/gmp')
-rw-r--r--ext/gmp/gmp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c
index 1b9846a576..143bfdb4b1 100644
--- a/ext/gmp/gmp.c
+++ b/ext/gmp/gmp.c
@@ -564,7 +564,7 @@ static int gmp_serialize(zval *object, unsigned char **buffer, size_t *buf_len,
zend_array tmp_arr;
PHP_VAR_SERIALIZE_INIT(serialize_data);
-
+
gmp_strval(&zv, gmpnum, 10);
php_var_serialize(&buf, &zv, &serialize_data);
zval_dtor(&zv);
@@ -762,8 +762,8 @@ static void gmp_strval(zval *result, mpz_t gmpnum, zend_long base) /* {{{ */
str = zend_string_alloc(num_len, 0);
mpz_get_str(str->val, base, gmpnum);
-
- /*
+
+ /*
* From GMP documentation for mpz_sizeinbase():
* The returned value will be exact or 1 too big. If base is a power of
* 2, the returned value will always be exact.
@@ -1499,7 +1499,7 @@ ZEND_FUNCTION(gmp_sqrtrem)
FREE_GMP_TEMP(temp_a);
RETURN_FALSE;
}
-
+
gmp_create(&result1, &gmpnum_result1);
gmp_create(&result2, &gmpnum_result2);