From: Peter Lawrence Date: Sun, 20 Jan 2019 21:12:22 +0000 (-0600) Subject: tcl_server: fix minor typo in comment X-Git-Tag: v0.11.0-rc1~766 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=5202d82a954627c6706529a82447aad4c63aefcc tcl_server: fix minor typo in comment ctrl-z usage is incorrectly commented as ctrl-d Change-Id: I54fe1775760ee984154bbae380baa38bcaffa04e Signed-off-by: Peter Lawrence Reviewed-on: http://openocd.zylin.com/4863 Tested-by: jenkins Reviewed-by: Christopher Head Reviewed-by: Tomas Vanek --- diff --git a/src/server/tcl_server.c b/src/server/tcl_server.c index 0676c883b9..1ec45ffbb1 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); }