summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorGwynne Raskind <gwynne@php.net>2008-03-07 08:51:05 +0000
committerGwynne Raskind <gwynne@php.net>2008-03-07 08:51:05 +0000
commit7abf0787ad9fd613ddde880c9bc163161d7bf4ff (patch)
tree33df6fc39a37daf3f4da6adf3720368637aa6fb5 /ext
parent4c23969a4133a71ce8d0772730c731b75a829936 (diff)
downloadphp-git-7abf0787ad9fd613ddde880c9bc163161d7bf4ff.tar.gz
Fix build (one too many right parenthesis in last commit for non-Windows builds)
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/php_rand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_rand.h b/ext/standard/php_rand.h
index 804a14b2aa..d7146bb7d3 100644
--- a/ext/standard/php_rand.h
+++ b/ext/standard/php_rand.h
@@ -49,7 +49,7 @@
#ifdef PHP_WIN32
#define GENERATE_SEED() (((long) (time(0) * GetCurrentProcessId())) ^ ((long) (1000000.0 * php_combined_lcg(TSRMLS_C))))
#else
-#define GENERATE_SEED() (((long) (time(0) * getpid())) ^ ((long) (1000000.0 * php_combined_lcg(TSRMLS_C)))))
+#define GENERATE_SEED() (((long) (time(0) * getpid())) ^ ((long) (1000000.0 * php_combined_lcg(TSRMLS_C))))
#endif
PHPAPI void php_srand(long seed TSRMLS_DC);