summaryrefslogtreecommitdiff
path: root/src/server/tcl_server.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-06 22:03:07 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-06 22:03:07 +0000
commit163bd86071a90b77eb8b0e03927b0ed8908eb892 (patch)
tree7ad70e3cc07e4e28b9d7319c0e56b62d1c025aae /src/server/tcl_server.c
parent0bb7c9d10935b320ada567dc0e46f3b23eea2793 (diff)
downloadopenocd+libswd-163bd86071a90b77eb8b0e03927b0ed8908eb892.tar.gz
openocd+libswd-163bd86071a90b77eb8b0e03927b0ed8908eb892.tar.bz2
openocd+libswd-163bd86071a90b77eb8b0e03927b0ed8908eb892.tar.xz
openocd+libswd-163bd86071a90b77eb8b0e03927b0ed8908eb892.zip
moving Tcl stuff around slightly.
git-svn-id: svn://svn.berlios.de/openocd/trunk@759 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/server/tcl_server.c')
-rw-r--r--src/server/tcl_server.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/server/tcl_server.c b/src/server/tcl_server.c
index cfdb8d07..8c47eafe 100644
--- a/src/server/tcl_server.c
+++ b/src/server/tcl_server.c
@@ -75,7 +75,7 @@ int tcl_output(connection_t *connection, const void *data, ssize_t len)
if (wlen == len)
return ERROR_OK;
- LOG_ERROR("error during write: %d != %d", wlen, len);
+ LOG_ERROR("error during write: %d != %d", (int)wlen, (int)len);
tclc->tc_outerror = 1;
return ERROR_SERVER_REMOTE_CLOSED;
}
@@ -84,7 +84,6 @@ int tcl_output(connection_t *connection, const void *data, ssize_t len)
/* connections */
static int tcl_new_connection(connection_t *connection)
{
- int i;
tcl_connection_t *tclc;
tclc = malloc(sizeof(tcl_connection_t));
@@ -177,8 +176,8 @@ int tcl_init(void)
if (tcl_port == 0)
{
- LOG_WARNING("no tcl port specified, using default port 5555");
- tcl_port = 5555;
+ LOG_WARNING("no tcl port specified, using default port 6666");
+ tcl_port = 6666;
}
retval = add_service("tcl", CONNECTION_TCL, tcl_port, 1, tcl_new_connection, tcl_input, tcl_closed, NULL);