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:
4b667a7
)
warning fix
author
Miklos Szeredi
<miklos@szeredi.hu>
Wed, 8 Aug 2007 17:58:43 +0000
(17:58 +0000)
committer
Miklos Szeredi
<miklos@szeredi.hu>
Wed, 8 Aug 2007 17:58:43 +0000
(17:58 +0000)
test/test.c
patch
|
blob
|
history
diff --git
a/test/test.c
b/test/test.c
index 307f58a4dedfc7f995fc8b92dc96513fe44dbd4e..2660bbb31f414b94e71159c4dc459badd9230dbb 100644
(file)
--- a/
test/test.c
+++ b/
test/test.c
@@
-140,7
+140,7
@@
static int check_nlink(const char *path, nlink_t nlink)
return -1;
}
if (stbuf.st_nlink != nlink) {
- ERROR("nlink %li instead of %li",
stbuf.st_nlink,
nlink);
+ ERROR("nlink %li instead of %li",
(long) stbuf.st_nlink, (long)
nlink);
return -1;
}
return 0;