From: Gwynne Raskind Date: Fri, 7 Mar 2008 08:51:05 +0000 (+0000) Subject: Fix build (one too many right parenthesis in last commit for non-Windows builds) X-Git-Tag: RELEASE_2_0_0a1~233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7abf0787ad9fd613ddde880c9bc163161d7bf4ff;p=php Fix build (one too many right parenthesis in last commit for non-Windows builds) --- 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);