Commit 31febb71f47eba2a840728012b771194ef2586a3

Authored by bellard
1 parent 2d7a3b9d

log typos


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1723 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 2 deletions
linux-user/syscall.c
@@ -457,7 +457,7 @@ static inline void target_to_host_cmsg(struct msghdr *msgh, @@ -457,7 +457,7 @@ static inline void target_to_host_cmsg(struct msghdr *msgh,
457 space += CMSG_SPACE(len); 457 space += CMSG_SPACE(len);
458 if (space > msgh->msg_controllen) { 458 if (space > msgh->msg_controllen) {
459 space -= CMSG_SPACE(len); 459 space -= CMSG_SPACE(len);
460 - gemu_log("Host cmsg overflow"); 460 + gemu_log("Host cmsg overflow\n");
461 break; 461 break;
462 } 462 }
463 463
@@ -500,7 +500,7 @@ static inline void host_to_target_cmsg(struct target_msghdr *target_msgh, @@ -500,7 +500,7 @@ static inline void host_to_target_cmsg(struct target_msghdr *target_msgh,
500 space += TARGET_CMSG_SPACE(len); 500 space += TARGET_CMSG_SPACE(len);
501 if (space > tswapl(target_msgh->msg_controllen)) { 501 if (space > tswapl(target_msgh->msg_controllen)) {
502 space -= TARGET_CMSG_SPACE(len); 502 space -= TARGET_CMSG_SPACE(len);
503 - gemu_log("Target cmsg overflow"); 503 + gemu_log("Target cmsg overflow\n");
504 break; 504 break;
505 } 505 }
506 506