aboutsummaryrefslogtreecommitdiff
path: root/src/formatter.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-03-26 17:00:35 +0000
committerMike Buland <eichlan@xagasoft.com>2009-03-26 17:00:35 +0000
commitb4ab27db8a97f0a56a61bd56480cfbe08a1f3399 (patch)
tree83c984b68f10099deac2e9536227a96cc416e39b /src/formatter.cpp
parent94fff060ee9ec6c2a8da75568702d8e944963d46 (diff)
downloadlibbu++-b4ab27db8a97f0a56a61bd56480cfbe08a1f3399.tar.gz
libbu++-b4ab27db8a97f0a56a61bd56480cfbe08a1f3399.tar.bz2
libbu++-b4ab27db8a97f0a56a61bd56480cfbe08a1f3399.tar.xz
libbu++-b4ab27db8a97f0a56a61bd56480cfbe08a1f3399.zip
Added some more constructors to the ServerSocket, and also switched the write
function in Bu::Formatter to take a void *, what was I thinking?
Diffstat (limited to 'src/formatter.cpp')
-rw-r--r--src/formatter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formatter.cpp b/src/formatter.cpp
index 6eb3b86..2fadd96 100644
--- a/src/formatter.cpp
+++ b/src/formatter.cpp
@@ -16,7 +16,7 @@ void Bu::Formatter::write( const Bu::FString &sStr )
16 rOut.write( sStr ); 16 rOut.write( sStr );
17} 17}
18 18
19void Bu::Formatter::write( const char *sStr, int iLen ) 19void Bu::Formatter::write( const void *sStr, int iLen )
20{ 20{
21 rOut.write( sStr, iLen ); 21 rOut.write( sStr, iLen );
22} 22}