From aef354ad54e697487157674f1a815bfa27c8b6ad Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 28 Mar 2016 17:34:42 +0300 Subject: [PATCH] Fixed building on Solaris by SunC. --- njs/njs_math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/njs/njs_math.c b/njs/njs_math.c index 1473e3d0..17e25464 100644 --- a/njs/njs_math.c +++ b/njs/njs_math.c @@ -536,7 +536,7 @@ static const njs_object_prop_t njs_math_object_properties[] = { .type = NJS_METHOD, .name = njs_string("random"), - .value = njs_native_function(njs_object_math_random, 0, ), + .value = njs_native_function(njs_object_math_random, 0, 0), }, { -- 2.47.3