mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2025-12-20 04:40:07 +01:00
tests: Address compilation warns/error on arm32 (format)
Switch to using inttypes for addressing compliation errors on other platforms (arm32). Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
This commit is contained in:
parent
9215a537e0
commit
a691dc51d2
1 changed files with 2 additions and 2 deletions
|
|
@ -79,8 +79,8 @@ input_timestamp(void *data,
|
|||
timespec_from_proto(timestamp, tv_sec_hi, tv_sec_lo,
|
||||
tv_nsec);
|
||||
|
||||
testlog("test-client: got input timestamp %ld.%ld\n",
|
||||
timestamp->tv_sec, timestamp->tv_nsec);
|
||||
testlog("test-client: got input timestamp %" PRIu64 ".%ld\n",
|
||||
(uint64_t) timestamp->tv_sec, timestamp->tv_nsec);
|
||||
}
|
||||
|
||||
static const struct zwp_input_timestamps_v1_listener
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue