aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/init.c b/src/core/init.c
index 9d9cdf48..974f4f2e 100644
--- a/src/core/init.c
+++ b/src/core/init.c
@@ -1,5 +1,5 @@
//
-// Copyright 2024 Staysail Systems, Inc. <info@staysail.tech>
+// Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
@@ -49,11 +49,11 @@ static nng_init_params init_params;
unsigned int init_count;
nni_atomic_flag init_busy;
-int
+nng_err
nng_init(nng_init_params *params)
{
nng_init_params zero = { 0 };
- int rv;
+ nng_err rv;
// cheap spin lock
while (nni_atomic_flag_test_and_set(&init_busy)) {