rymanluk commented on a change in pull request #748: Some mesh fixes from Zephyr URL: https://github.com/apache/mynewt-core/pull/748#discussion_r166742413
########## File path: net/nimble/host/mesh/src/testing.c ########## @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2017 Intel Corporation + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#include <stddef.h> + +#include "mesh/testing.h" +#include "mesh/glue.h" + +static sys_slist_t cb_slist; +static sys_slist_t cb_slist = SYS_SLIST_STATIC_INIT(cb_slist); Review comment: shouldnt it be static sys_slist_t cb_slist = SYS_SLIST_STATIC_INIT(&cb_slist); ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
