소스 검색

server: fix cosmetic typo

ambrop7 13 년 전
부모
커밋
3f49f1bf40
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/server.c

+ 1 - 1
server/server.c

@@ -846,7 +846,7 @@ void listener_handler (BListener *listener)
     
     // limit socket send buffer, else our scheduling is pointless
     if (options.client_socket_sndbuf > 0) {
-        if (!BConnection_SetSendBuffer(&client->con, options.client_socket_sndbuf) < 0) {
+        if (!BConnection_SetSendBuffer(&client->con, options.client_socket_sndbuf)) {
             BLog(BLOG_WARNING, "BConnection_SetSendBuffer failed");
         }
     }