diff options
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/ovs/nm-ovsdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/ovs/nm-ovsdb.c b/src/devices/ovs/nm-ovsdb.c index 9ebee53895..166311a07c 100644 --- a/src/devices/ovs/nm-ovsdb.c +++ b/src/devices/ovs/nm-ovsdb.c @@ -1125,13 +1125,13 @@ ovsdb_got_msg (NMOvsdb *self, json_t *msg) if (id > -1) { /* This is a response to a method call. */ if (!priv->calls->len) { - _LOGE ("there are no queued calls expecting response %ld", id); + _LOGE ("there are no queued calls expecting response %" G_GUINT64_FORMAT, id); ovsdb_disconnect (self); return; } call = &g_array_index (priv->calls, OvsdbMethodCall, 0); if (call->id != id) { - _LOGE ("expected a response to call %ld, not %ld", call->id, id); + _LOGE ("expected a response to call %" G_GUINT64_FORMAT ", not %" G_GUINT64_FORMAT, call->id, id); ovsdb_disconnect (self); return; } |