Merge pull request #2111 from taosdata/hotfix/sangshuduo/fix-printf-format-in-rpcTcp.c

fix printf format issue in rpcTcp.c
This commit is contained in:
Shengliang Guan 2020-06-02 16:46:27 +08:00 committed by GitHub
commit 05872a7d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}