From 90c9cf9cbb2033cde32eb92f20b0decad0098dfa Mon Sep 17 00:00:00 2001 From: David Lin Date: Sat, 7 Mar 2020 09:00:14 +0800 Subject: [PATCH] Added missing parameter --- .../source/src/port/TencentOS_tiny/osal_udp_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/connectivity/TencentCloud_SDK/source/src/port/TencentOS_tiny/osal_udp_module.c b/components/connectivity/TencentCloud_SDK/source/src/port/TencentOS_tiny/osal_udp_module.c index a72d8ba4..e8ad6997 100644 --- a/components/connectivity/TencentCloud_SDK/source/src/port/TencentOS_tiny/osal_udp_module.c +++ b/components/connectivity/TencentCloud_SDK/source/src/port/TencentOS_tiny/osal_udp_module.c @@ -74,7 +74,7 @@ __QCLOUD_OSAL__ qcloud_err_t osal_udp_read(int sockfd, void *buf, size_t len, ui { int ret; - QCLOUD_LOG_I("osal_udp_read len %d timeout %d\r\n", len); + QCLOUD_LOG_I("osal_udp_read len %d timeout %d\r\n", len, timeout); ret = tos_sal_module_recvfrom_timeout(sockfd, buf, len, timeout);