projects
/
platform
/
core
/
system
/
kdbus-bus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
943e57e
)
Fix annoying compile warning due to missing cast
author
Torstein Husebø
<torstein@huseboe.net>
Sun, 29 Jun 2014 15:41:31 +0000
(17:41 +0200)
committer
Torstein Husebø
<torstein@huseboe.net>
Sun, 29 Jun 2014 16:09:27 +0000
(18:09 +0200)
test/test-kdbus-policy.c
patch
|
blob
|
history
diff --git
a/test/test-kdbus-policy.c
b/test/test-kdbus-policy.c
index 6099087d312d226e77e37a548d3117186692a572..e3e3e7ec7724bb4a69691366ce93c0ac621902a1 100644
(file)
--- a/
test/test-kdbus-policy.c
+++ b/
test/test-kdbus-policy.c
@@
-125,8
+125,8
@@
static void *kdbus_recv_echo(void *ptr)
}
if (ret > 0 && fd.revents & POLLIN) {
- printf("-- Connection id: %l
u
received new message:\n",
- conn->id);
+ printf("-- Connection id: %l
lu
received new message:\n",
+
(unsigned long long)
conn->id);
ret = msg_recv(conn);
}