From e630c3bec1c08475f79aaa1ea4b0cbac8f9ae29a Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 30 Oct 2020 06:03:21 +0100 Subject: api: fix zero-parameter C function prototypes Reported-by: Jason A. Donenfeld Signed-off-by: Simon Rozman --- api/nci.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'api/nci.h') diff --git a/api/nci.h b/api/nci.h index 5090c90..4288655 100644 --- a/api/nci.h +++ b/api/nci.h @@ -16,7 +16,7 @@ extern DWORD(WINAPI *NciGetConnectionName)( _Out_opt_ DWORD *OutDestNameBytes); void -NciInit(); +NciInit(void); void -NciCleanup(); +NciCleanup(void); -- cgit v1.2.3-59-g8ed1b