fix printf format issue in rpcTcp.c

[TD-505]
This commit is contained in:
Shuduo Sang 2020-06-02 15:51:40 +08:00
parent 33b5bb5d6e
commit 043d759efd
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ static void* taosAcceptTcpConnection(void *arg) {
tTrace("%s TCP server socket was shutdown, exiting...", pServerObj->label);
break;
}
tError("%s TCP accept failure(%s)", pServerObj->label, errno, strerror(errno));
tError("%s TCP accept failure(%s)", pServerObj->label, strerror(errno));
continue;
}