diff options
Diffstat (limited to 'src/unstable')
-rw-r--r-- | src/unstable/blob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unstable/blob.cpp b/src/unstable/blob.cpp index a9cb99d..d343963 100644 --- a/src/unstable/blob.cpp +++ b/src/unstable/blob.cpp | |||
@@ -813,7 +813,7 @@ template<> void Bu::__tracer_format<Bu::Blob>( const Bu::Blob &v ) | |||
813 | #include "bu/formatter.h" | 813 | #include "bu/formatter.h" |
814 | Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::Blob &b ) | 814 | Bu::Formatter &Bu::operator<<( Bu::Formatter &rOut, const Bu::Blob &b ) |
815 | { | 815 | { |
816 | rOut.write( b.getData(), b.getSize() ); | 816 | rOut.writeAligned( b.getData(), b.getSize() ); |
817 | return rOut; | 817 | return rOut; |
818 | } | 818 | } |
819 | 819 | ||