projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9126a7b
)
fix format in test (#515)
author
Rosen Penev
<rosenp@gmail.com>
Fri, 15 May 2020 18:34:31 +0000
(11:34 -0700)
committer
GitHub
<noreply@github.com>
Fri, 15 May 2020 18:34:31 +0000
(19:34 +0100)
Fixes warning under 32-bit.
test/test_syscalls.c
patch
|
blob
|
history
diff --git
a/test/test_syscalls.c
b/test/test_syscalls.c
index e1dbab3a9f86f8fe704a0d3da2c4db4dd148a4fe..18326c0706a7b780c7cfd57c70fd1003ad1ebf39 100644
(file)
--- a/
test/test_syscalls.c
+++ b/
test/test_syscalls.c
@@
-1746,7
+1746,7
@@
static int test_socket(void)
start_test("socket");
if (strlen(testsock) + 1 > sizeof(su.sun_path)) {
- fprintf(stderr, "Need to shorten mount point by %
l
u chars\n",
+ fprintf(stderr, "Need to shorten mount point by %
z
u chars\n",
strlen(testsock) + 1 - sizeof(su.sun_path));
return -1;
}