From 325622e4fdf2a86137808618c0276d31655da07a Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Mon, 6 May 2019 05:07:51 +0300 Subject: [PATCH] Added missing "static" to njs_object_property_query() declaration. --- njs/njs_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/njs/njs_object.c b/njs/njs_object.c index fb94be5b..28880438 100644 --- a/njs/njs_object.c +++ b/njs/njs_object.c @@ -417,7 +417,7 @@ njs_property_query(njs_vm_t *vm, njs_property_query_t *pq, njs_value_t *object, } -njs_ret_t +static njs_ret_t njs_object_property_query(njs_vm_t *vm, njs_property_query_t *pq, njs_object_t *object, const njs_value_t *property) { -- 2.47.3