diff options
| author | Kristian Høgsberg <krh@bitplanet.net> | 2011-11-22 14:03:33 -0500 |
|---|---|---|
| committer | Kristian Høgsberg <krh@bitplanet.net> | 2011-11-22 14:04:10 -0500 |
| commit | 190492b97c9db43a910f17c576244492e19bc658 (patch) | |
| tree | 677ab5a9fb21b6e4cf4e8893e26ab458b58c94c5 | |
| parent | scanner: Only strdup interface_name after making sure it's not NULL (diff) | |
| download | wayland-190492b97c9db43a910f17c576244492e19bc658.tar wayland-190492b97c9db43a910f17c576244492e19bc658.tar.gz wayland-190492b97c9db43a910f17c576244492e19bc658.tar.bz2 wayland-190492b97c9db43a910f17c576244492e19bc658.tar.lz wayland-190492b97c9db43a910f17c576244492e19bc658.tar.xz wayland-190492b97c9db43a910f17c576244492e19bc658.tar.zst wayland-190492b97c9db43a910f17c576244492e19bc658.zip | |
debug: Use unsigned for object IDs
| -rw-r--r-- | src/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.c b/src/connection.c index 84f58c4..8c9a64d 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, |
