aboutsummaryrefslogtreecommitdiff
path: root/tcp_subr.c
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2011-09-12 22:33:01 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2011-09-16 08:25:56 -0500
commitfd81c611f951343ae07af3aa449bdae57153e369 (patch)
tree430170a93762eb53c59861366b62eee61f681142 /tcp_subr.c
parent690a66b63972f5b262fe1e3eab50715bd482ea5e (diff)
downloadslirp-fd81c611f951343ae07af3aa449bdae57153e369.zip
slirp-fd81c611f951343ae07af3aa449bdae57153e369.tar.gz
slirp-fd81c611f951343ae07af3aa449bdae57153e369.tar.bz2
Remove blanks before \n in output strings
Those blanks violate the coding conventions, see scripts/checkpatch.pl. Blanks missing after colons in the changed lines were added. This patch does not try to fix tabs, long lines and other problems in the changed lines, therefore checkpatch.pl reports many violations. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'tcp_subr.c')
-rw-r--r--tcp_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcp_subr.c b/tcp_subr.c
index 57b652e..708db51 100644
--- a/tcp_subr.c
+++ b/tcp_subr.c
@@ -897,7 +897,7 @@ int tcp_ctl(struct socket *so)
return 1;
}
do_pty = ex_ptr->ex_pty;
- DEBUG_MISC((dfd, " executing %s \n", ex_ptr->ex_exec));
+ DEBUG_MISC((dfd, " executing %s\n", ex_ptr->ex_exec));
return fork_exec(so, ex_ptr->ex_exec, do_pty);
}
}