Commit 8a45fe70 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by Masahiro Yamada

samples: uhid: fix warnings in uhid-example

Fix warnings seen when building for 32-bit architecture.

Use "%xd" for arguments of type size_t to fix the warnings.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent e079a08c
...@@ -165,7 +165,7 @@ static int uhid_write(int fd, const struct uhid_event *ev) ...@@ -165,7 +165,7 @@ static int uhid_write(int fd, const struct uhid_event *ev)
fprintf(stderr, "Cannot write to uhid: %m\n"); fprintf(stderr, "Cannot write to uhid: %m\n");
return -errno; return -errno;
} else if (ret != sizeof(*ev)) { } else if (ret != sizeof(*ev)) {
fprintf(stderr, "Wrong size written to uhid: %ld != %lu\n", fprintf(stderr, "Wrong size written to uhid: %zd != %zu\n",
ret, sizeof(ev)); ret, sizeof(ev));
return -EFAULT; return -EFAULT;
} else { } else {
...@@ -236,7 +236,7 @@ static int event(int fd) ...@@ -236,7 +236,7 @@ static int event(int fd)
fprintf(stderr, "Cannot read uhid-cdev: %m\n"); fprintf(stderr, "Cannot read uhid-cdev: %m\n");
return -errno; return -errno;
} else if (ret != sizeof(ev)) { } else if (ret != sizeof(ev)) {
fprintf(stderr, "Invalid size read from uhid-dev: %ld != %lu\n", fprintf(stderr, "Invalid size read from uhid-dev: %zd != %zu\n",
ret, sizeof(ev)); ret, sizeof(ev));
return -EFAULT; return -EFAULT;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment