diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-12-18 20:03:27 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-12-18 20:03:27 +0000 |
commit | 31febb71f47eba2a840728012b771194ef2586a3 (patch) | |
tree | bcf6831db53692fac6eaaebefc7eb4177a749ae0 /linux-user | |
parent | 2d7a3b9d7bf8959077ad19951d7f30dc87da9838 (diff) | |
download | qemu-31febb71f47eba2a840728012b771194ef2586a3.tar.gz qemu-31febb71f47eba2a840728012b771194ef2586a3.tar.bz2 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')
-rw-r--r-- | linux-user/syscall.c | 4 |
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; } |