From d01854a341dd054de0ff528fd0ec49d3061f08db Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Tue, 23 Feb 2016 17:16:57 +0900 Subject: common: no logic change, fix alignment, whitespaces --- common/os_calls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/os_calls.c') diff --git a/common/os_calls.c b/common/os_calls.c index f02b8c65..4e79cdeb 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -986,8 +986,8 @@ g_tcp_accept(int sck) ret = accept(sck, (struct sockaddr *)&s, &i); if(ret>0) { - snprintf(ipAddr,255,"A connection received from: %s port %d" - ,inet_ntoa(s.sin_addr),ntohs(s.sin_port)); + snprintf(ipAddr, 255, "A connection received from: %s port %d", + inet_ntoa(s.sin_addr), ntohs(s.sin_port)); log_message(LOG_LEVEL_INFO,ipAddr); } return ret ; -- cgit v1.2.3