summaryrefslogtreecommitdiffstats
path: root/linux-user/syscall.c
diff options
context:
space:
mode:
authorbellard2005-12-18 21:03:27 +0100
committerbellard2005-12-18 21:03:27 +0100
commit31febb71f47eba2a840728012b771194ef2586a3 (patch)
treebcf6831db53692fac6eaaebefc7eb4177a749ae0 /linux-user/syscall.c
parentqruncom compile fixes (initial patch by Even Rouault) (diff)
downloadqemu-31febb71f47eba2a840728012b771194ef2586a3.tar.gz
qemu-31febb71f47eba2a840728012b771194ef2586a3.tar.xz
qemu-31febb71f47eba2a840728012b771194ef2586a3.zip
log typos
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1723 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r--linux-user/syscall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 1f123b609e..164eb394a1 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -457,7 +457,7 @@ static inline void target_to_host_cmsg(struct msghdr *msgh,
space += CMSG_SPACE(len);
if (space > msgh->msg_controllen) {
space -= CMSG_SPACE(len);
- gemu_log("Host cmsg overflow");
+ gemu_log("Host cmsg overflow\n");
break;
}
@@ -500,7 +500,7 @@ static inline void host_to_target_cmsg(struct target_msghdr *target_msgh,
space += TARGET_CMSG_SPACE(len);
if (space > tswapl(target_msgh->msg_controllen)) {
space -= TARGET_CMSG_SPACE(len);
- gemu_log("Target cmsg overflow");
+ gemu_log("Target cmsg overflow\n");
break;
}