summaryrefslogtreecommitdiff
path: root/src/timesync
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-07-17 01:07:17 +0200
committerLennart Poettering <lennart@poettering.net>2014-07-17 01:41:52 +0200
commit0014a4ad505d119c7ac4346d9d774c3f17f663a5 (patch)
tree78670c7fa0bb772e1e334c6f520478067b9c5531 /src/timesync
parent260b6323cc2aebe722d5b8e43fa63a502f906774 (diff)
sd-network: fix parameter order for sd_network_monitor_new()
Constructors should return the object they created as first parameter, except when they are generated as a child/member object of some other object in which case that should be first.
Diffstat (limited to 'src/timesync')
-rw-r--r--src/timesync/timesyncd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c
index e4e3aaecdf..732f5bf6c2 100644
--- a/src/timesync/timesyncd.c
+++ b/src/timesync/timesyncd.c
@@ -1152,7 +1152,7 @@ static int manager_network_monitor_listen(Manager *m) {
_cleanup_network_monitor_unref_ sd_network_monitor *monitor = NULL;
int r, fd, events;
- r = sd_network_monitor_new(NULL, &monitor);
+ r = sd_network_monitor_new(&monitor, NULL);
if (r < 0)
return r;