From 4bd62977d4607ef9ec92b145eea67059842a8d79 Mon Sep 17 00:00:00 2001 From: Marcin K Szczodrak Date: Tue, 20 Sep 2016 10:27:26 -0700 Subject: [PATCH] add missing void in otInstanceInit declaration (#640) --- include/openthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openthread.h b/include/openthread.h index 43862dd39..eb9b3d92d 100644 --- a/include/openthread.h +++ b/include/openthread.h @@ -185,7 +185,7 @@ otInstance *otInstanceInit(void *aInstanceBuffer, uint64_t *aInstanceBufferSize) * @retval otInstance* The new OpenThread instance structure. * */ -otInstance *otInstanceInit(); +otInstance *otInstanceInit(void); #endif /**