3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-12-22 21:22:37 +01:00

module: add void to empty argument functions

Found with clang's -Wstrict-prototypes
This commit is contained in:
Rosen Penev 2020-04-09 17:38:30 -07:00 committed by Denis Kenzior
parent a47609acbe
commit 1dfc28d21a

View File

@ -47,5 +47,5 @@ struct iwd_module_depends {
.target = #dep, \
};
int iwd_modules_init();
void iwd_modules_exit();
int iwd_modules_init(void);
void iwd_modules_exit(void);