From 0878b9ed05a38873cb094ea37c615310355fd2af Mon Sep 17 00:00:00 2001 From: Andy Green Date: Wed, 13 Feb 2013 11:44:20 +0800 Subject: [PATCH] fix missing cr from closing log Signed-off-by: Andy Green --- lib/libwebsockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libwebsockets.c b/lib/libwebsockets.c index 629f13b2..bf2761ff 100644 --- a/lib/libwebsockets.c +++ b/lib/libwebsockets.c @@ -943,7 +943,7 @@ libwebsocket_service_fd(struct libwebsocket_context *context, wsi->state == WSI_STATE_ESTABLISHED) if (lws_handle_POLLOUT_event(context, wsi, pollfd) < 0) { - lwsl_info("libwebsocket_service_fd: closing"); + lwsl_info("libwebsocket_service_fd: closing\n"); libwebsocket_close_and_free_session( context, wsi, LWS_CLOSE_STATUS_NORMAL); return 0;