summaryrefslogtreecommitdiff
path: root/linux-user
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-12-18 20:03:27 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-12-18 20:03:27 +0000
commit31febb71f47eba2a840728012b771194ef2586a3 (patch)
treebcf6831db53692fac6eaaebefc7eb4177a749ae0 /linux-user
parent2d7a3b9d7bf8959077ad19951d7f30dc87da9838 (diff)
downloadqemu-31febb71f47eba2a840728012b771194ef2586a3.tar.gz
log typos
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1723 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-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;
}