aboutsummaryrefslogtreecommitdiff
path: root/src/formatter.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-10-06 02:58:23 +0000
committerMike Buland <eichlan@xagasoft.com>2011-10-06 02:58:23 +0000
commit411f240da34bab53cd18aa8b7ba09834ede49b1c (patch)
treee7434082f385fda0d23e57edb7daad5725e4be04 /src/formatter.cpp
parent31ead732224022892db26ac28e505c46f91bd0e0 (diff)
downloadlibbu++-411f240da34bab53cd18aa8b7ba09834ede49b1c.tar.gz
libbu++-411f240da34bab53cd18aa8b7ba09834ede49b1c.tar.bz2
libbu++-411f240da34bab53cd18aa8b7ba09834ede49b1c.tar.xz
libbu++-411f240da34bab53cd18aa8b7ba09834ede49b1c.zip
Fixed the formatting of unsigned chars in the formatter, and added a function to
actually stop the fastcgi main loop.
Diffstat (limited to '')
-rw-r--r--src/formatter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formatter.cpp b/src/formatter.cpp
index 61a059a..f275d71 100644
--- a/src/formatter.cpp
+++ b/src/formatter.cpp
@@ -364,7 +364,7 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &f, char c )
364 364
365Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned char c ) 365Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned char c )
366{ 366{
367 f.ifmt<unsigned char>( c ); 367 f.ufmt<unsigned char>( c );
368 //f.write( (char *)&c, 1 ); 368 //f.write( (char *)&c, 1 );
369 return f; 369 return f;
370} 370}