From e01d0d4cfddc2528020748c7d496a37600bec24f Mon Sep 17 00:00:00 2001 From: skarg Date: Thu, 7 Apr 2011 17:22:59 +0000 Subject: [PATCH] Fixed strings that exceeded line length recommendations. --- bacnet-stack/ports/win32/bip-init.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/bacnet-stack/ports/win32/bip-init.c b/bacnet-stack/ports/win32/bip-init.c index d99e8410..41d8e5b3 100644 --- a/bacnet-stack/ports/win32/bip-init.c +++ b/bacnet-stack/ports/win32/bip-init.c @@ -220,8 +220,10 @@ static char *winsock_error_code_text( case WSAEWOULDBLOCK: return "Operation would block."; case WSAEINPROGRESS: - return - "Operation now in progress. This error is returned if any Windows Sockets API function is called while a blocking function is in progress."; + return "Operation now in progress. " + "This error is returned if any Windows Sockets API " + "function is called while a blocking function " + "is in progress."; case WSAENOTSOCK: return "Socket operation on nonsocket."; case WSAEDESTADDRREQ: @@ -247,8 +249,10 @@ static char *winsock_error_code_text( case WSAEADDRNOTAVAIL: return "Cannot assign requested address."; case WSAENETDOWN: - return - "Network is down. This error may be reported at any time if the Windows Sockets implementation detects an underlying failure."; + return "Network is down. " + "This error may be reported at any time " + "if the Windows Sockets implementation " + "detects an underlying failure."; case WSAENETUNREACH: return "Network is unreachable."; case WSAENETRESET: @@ -288,7 +292,8 @@ static char *winsock_error_code_text( "this application."; case WSANOTINITIALISED: return "Winsock not initialized. " - "This message is returned by any function except WSAStartup(), " + "This message is returned by any function " + "except WSAStartup(), " "indicating that a successful WSAStartup() has not yet " "been performed."; case WSAEDISCON: