From 190492b97c9db43a910f17c576244492e19bc658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= Date: Tue, 22 Nov 2011 14:03:33 -0500 Subject: [PATCH] debug: Use unsigned for object IDs --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 84f58c4d..8c9a64d1 100644 --- a/src/connection.c +++ b/src/connection.c @@ -740,7 +740,7 @@ wl_closure_print(struct wl_closure *closure, struct wl_object *target, int send) clock_gettime(CLOCK_REALTIME, &tp); time = (tp.tv_sec * 1000000L) + (tp.tv_nsec / 1000); - fprintf(stderr, "[%10.3f] %s%s@%d.%s(", + fprintf(stderr, "[%10.3f] %s%s@%u.%s(", time / 1000.0, send ? " -> " : "", target->interface->name, target->id,