summaryrefslogtreecommitdiff
path: root/ext/standard/rand.c
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2001-09-05 21:04:30 +0000
committerSterling Hughes <sterling@php.net>2001-09-05 21:04:30 +0000
commit5ec58914fe9e0f2d95679b3346ebd8d72cac2f52 (patch)
tree9970654cede7e8220ebf26f7c235a822f6c19614 /ext/standard/rand.c
parentf0c5631778393d357d00551307b93546709c1f1f (diff)
downloadphp-git-5ec58914fe9e0f2d95679b3346ebd8d72cac2f52.tar.gz
stray tabs and spaces
Diffstat (limited to 'ext/standard/rand.c')
-rw-r--r--ext/standard/rand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/rand.c b/ext/standard/rand.c
index e71692d169..35f5d67558 100644
--- a/ext/standard/rand.c
+++ b/ext/standard/rand.c
@@ -202,7 +202,7 @@ PHP_FUNCTION(srand)
}
convert_to_long_ex(seed);
- php_srand(Z_LVAL_PP(seed));
+ php_srand(Z_LVAL_PP(seed));
}
/* }}} */
@@ -263,7 +263,7 @@ PHP_FUNCTION(rand)
if (argc != 0 && argc != 2 ||
zend_get_parameters_ex(argc, &min, &max) == FAILURE) {
WRONG_PARAM_COUNT;
- }
+ }
number = php_rand();
if (argc == 2) {