diff options
author | Thomas Haller <thaller@redhat.com> | 2014-10-29 10:44:31 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2014-10-29 12:30:11 +0100 |
commit | b77567b2257c6ff3a78d508b332a330671119b65 (patch) | |
tree | e1df91b60884080c90abb8681877e8a1b707e981 /src/nm-logging.c | |
parent | 5aefbe56584f5ca4464275dba81d07a51a205297 (diff) | |
download | NetworkManager-b77567b2257c6ff3a78d508b332a330671119b65.tar.gz |
build: fix -Wstrict-prototypes warnings
We disabled -Wstrict-prototypes in commit
db9b1df0e47996ff8aaea468a11e1e97f64ee126 .
Fix compiler warnings.
Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'src/nm-logging.c')
-rw-r--r-- | src/nm-logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nm-logging.c b/src/nm-logging.c index 9dbc9f2618..32d8e539e1 100644 --- a/src/nm-logging.c +++ b/src/nm-logging.c @@ -125,7 +125,7 @@ static const LogDesc domain_descs[] = { /************************************************************************/ static void -_ensure_initialized () +_ensure_initialized (void) { if (G_UNLIKELY (!logging_set_up)) nm_logging_setup ("INFO", "DEFAULT", NULL, NULL); |