aboutsummaryrefslogtreecommitdiff
path: root/src/server/tcl_server.c
diff options
context:
space:
mode:
authorPeter Lawrence <majbthrd@gmail.com>2019-01-20 15:12:22 -0600
committerTomas Vanek <vanekt@fbl.cz>2019-04-03 21:59:59 +0100
commit5202d82a954627c6706529a82447aad4c63aefcc (patch)
tree2f6f25711107369e35bffc09a00f710018806185 /src/server/tcl_server.c
parent0627e4686aa18159327751361940595e19b0c525 (diff)
downloadriscv-openocd-5202d82a954627c6706529a82447aad4c63aefcc.zip
riscv-openocd-5202d82a954627c6706529a82447aad4c63aefcc.tar.gz
riscv-openocd-5202d82a954627c6706529a82447aad4c63aefcc.tar.bz2
tcl_server: fix minor typo in comment
ctrl-z usage is incorrectly commented as ctrl-d Change-Id: I54fe1775760ee984154bbae380baa38bcaffa04e Signed-off-by: Peter Lawrence <majbthrd@gmail.com> Reviewed-on: http://openocd.zylin.com/4863 Tested-by: jenkins Reviewed-by: Christopher Head <chead@zaber.com> Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/server/tcl_server.c')
-rw-r--r--src/server/tcl_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/tcl_server.c b/src/server/tcl_server.c
index 0676c88..1ec45ff 100644
--- a/src/server/tcl_server.c
+++ b/src/server/tcl_server.c
@@ -246,7 +246,7 @@ static int tcl_input(struct connection *connection)
retval = tcl_output(connection, result, reslen);
if (retval != ERROR_OK)
return retval;
- /* Always output ctrl-d as end of line to allow multiline results */
+ /* Always output ctrl-z as end of line to allow multiline results */
tcl_output(connection, "\x1a", 1);
}