From: Dmitry Volyntsev Date: Mon, 12 Feb 2018 12:15:53 +0000 (+0300) Subject: Fixed console.help() method return value. X-Git-Tag: 0.2.0~38 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=d98a0b43f03086bd6d25ef7d9508abc2a0b109ee;p=njs.git Fixed console.help() method return value. --- diff --git a/njs/njs.c b/njs/njs.c index 8d90747b..ee7cc901 100644 --- a/njs/njs.c +++ b/njs/njs.c @@ -659,5 +659,7 @@ njs_ext_console_help(njs_vm_t *vm, njs_value_t *args, nxt_uint_t nargs, printf("\n"); + vm->retval = njs_value_void; + return NJS_OK; }