diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2017-10-31 10:41:27 +0100 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2017-10-31 10:57:05 +0100 |
commit | 47ebb986304a0daf35aaf5e1ecb6f55b1056715b (patch) | |
tree | ed201f8c68365762acfed880173297e94da7c29e /src/devices | |
parent | a83ab252ee589e6c94b2c568a2954857dede706e (diff) | |
download | NetworkManager-47ebb986304a0daf35aaf5e1ecb6f55b1056715b.tar.gz |
devices/ovs/ovsdb: fix 32bit builds
So that we work well on VAXen.
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; } |