From 2cde6366b26ad2d2682d5552bccff2f00a8237bf Mon Sep 17 00:00:00 2001 From: jaylin Date: Sun, 7 Jan 2024 22:27:53 +0800 Subject: [PATCH] * FIX [core] fix a syntax error Signed-off-by: jaylin --- src/core/init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/init.h b/src/core/init.h index d20cf0467..6ce02c481 100644 --- a/src/core/init.h +++ b/src/core/init.h @@ -25,7 +25,7 @@ void nni_fini(void); // nni_init_param is used by applications (via nng_init_param) to configure // some tunable settings at runtime. It must be called before any other NNG // functions are called, in order to have any effect at all. -void nni_init_set_param(nng_init_parameter, uint64_t value); +void nni_init_set_param(nng_init_parameter parameter, uint64_t value); // subsystems can call this to obtain a parameter value. uint64_t nni_init_get_param(nng_init_parameter parameter, uint64_t default_value);