aboutsummaryrefslogtreecommitdiffstats
path: root/src/connection.c
diff options
context:
space:
mode:
authorGiulio Camuffo <giuliocamuffo@gmail.com>2014-04-22 16:03:12 +0300
committerKristian Høgsberg <krh@bitplanet.net>2014-04-25 13:28:19 -0700
commit5535757a40e207c81460c4119097a697a245f4c5 (patch)
tree0aa28dc1182daeb31f764667f2cef5ad03571381 /src/connection.c
parentconnection: Don't write past the end of the connection buffer (diff)
downloadwayland-5535757a40e207c81460c4119097a697a245f4c5.tar
wayland-5535757a40e207c81460c4119097a697a245f4c5.tar.gz
wayland-5535757a40e207c81460c4119097a697a245f4c5.tar.bz2
wayland-5535757a40e207c81460c4119097a697a245f4c5.tar.lz
wayland-5535757a40e207c81460c4119097a697a245f4c5.tar.xz
wayland-5535757a40e207c81460c4119097a697a245f4c5.tar.zst
wayland-5535757a40e207c81460c4119097a697a245f4c5.zip
connection: fix a format string typo in error message
Diffstat (limited to 'src/connection.c')
-rw-r--r--src/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.c b/src/connection.c
index 63b0592..47ee556 100644
--- a/src/connection.c
+++ b/src/connection.c
@@ -724,7 +724,7 @@ wl_connection_demarshal(struct wl_connection *connection,
}
if (wl_map_reserve_new(objects, id) < 0) {
- wl_log("not a valid new object id (%d), "
+ wl_log("not a valid new object id (%u), "
"message %s(%s)\n",
id, message->name, message->signature);
errno = EINVAL;