Eliminate unnecessary snprintf()

This commit is contained in:
Keith Winstein
2012-03-14 02:14:10 -04:00
parent 487ab77e42
commit 4783e7cd82
+1 -2
View File
@@ -269,8 +269,7 @@ void Display::put_cell( bool initialized, FrameState &frame, const Framebuffer &
/* cells that begin with combining character get combiner attached to no-break space */
if ( cell->fallback ) {
snprintf( tmp, 64, "%lc", L'\xA0' );
frame.append( tmp );
frame.append( "\xC2\xA0" );
}
for ( std::vector<wchar_t>::const_iterator i = cell->contents.begin();