Module: xenomai-3 Branch: next Commit: 50af7854215266936e28381b75920d1f82d23ea8 URL: http://git.xenomai.org/?p=xenomai-3.git;a=commit;h=50af7854215266936e28381b75920d1f82d23ea8
Author: Don Mahurin <[email protected]> Date: Thu May 14 17:34:53 2015 -0700 cobalt/arm64: fix warning: expects argument of type 'long unsigned int', but argument has type 'u64' --- kernel/cobalt/posix/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/cobalt/posix/syscall.c b/kernel/cobalt/posix/syscall.c index 8186a0f..2926d7e 100644 --- a/kernel/cobalt/posix/syscall.c +++ b/kernel/cobalt/posix/syscall.c @@ -666,7 +666,7 @@ linux_syscall: return KEVENT_PROPAGATE; bad_syscall: - printk(XENO_WARNING "bad syscall <%#lx>\n", __xn_syscall(regs)); + printk(XENO_WARNING "bad syscall <%#llx>\n", __xn_syscall(regs)); __xn_error_return(regs, -ENOSYS); _______________________________________________ Xenomai-git mailing list [email protected] https://xenomai.org/mailman/listinfo/xenomai-git
