summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-01-24 20:34:21 +0000
committergthaker <gthaker@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-01-24 20:34:21 +0000
commitb885f6041f04ed682cf4b4ba6c28a7f5a9ed84f7 (patch)
tree3ddc272349727bac126dde5a494845e477536a36
parent7b1e815bbfde36f6cd26e1b12a54b7e1a6f2364c (diff)
downloadATCD-b885f6041f04ed682cf4b4ba6c28a7f5a9ed84f7.tar.gz
To make code more readable, I changed the way a string literal is
formatted.
-rw-r--r--performance-tests/SCTP/SOCK_STREAM_srv.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/performance-tests/SCTP/SOCK_STREAM_srv.cpp b/performance-tests/SCTP/SOCK_STREAM_srv.cpp
index 550f3ff5de5..71089c35dc5 100644
--- a/performance-tests/SCTP/SOCK_STREAM_srv.cpp
+++ b/performance-tests/SCTP/SOCK_STREAM_srv.cpp
@@ -224,7 +224,9 @@ int main(int argc, char **argv){
#ifndef ACE_HAS_SCTP
if (optsMgr.test_transport_protocol == IPPROTO_SCTP)
ACE_ERROR_RETURN((LM_ERROR,
- "SCTP was NOT installed when this binary was compiled.\nSOCK_STREAM_srv may still be run using TCP via the '-t tcp' option.\n"),
+ "SCTP was NOT installed when this binary was compiled.\n"
+ "SOCK_STREAM_srv may still be run using TCP "
+ "via the '-t tcp' option.\n"),
1);
#endif