mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-09 22:50:21 +01:00
main: fix a compiler warning about function declaration
warning: function declaration isn’t a prototype [-Wstrict-prototypes] In C function() and function(void) are two different prototypes (as opposed to C++). function() accepts an arbitrary number of arguments function(void) accepts zero arguments
This commit is contained in:
parent
713065b880
commit
eb07137bec
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,7 @@ _init_nm_debug (const char *debug)
|
|||
}
|
||||
|
||||
void
|
||||
nm_main_config_reload ()
|
||||
nm_main_config_reload (void)
|
||||
{
|
||||
nm_log_info (LOGD_CORE, "reload configuration...");
|
||||
/* The signal handler thread is only installed after
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue