Replace C++0x nullptr with 0

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2012-02-17 19:29:46 -05:00
parent 6c52c1d306
commit f914d1747d
+1 -1
View File
@@ -225,7 +225,7 @@ void NotificationEngine::apply( Framebuffer &fb ) const
wchar_t ch = *i; wchar_t ch = *i;
int chwidth = ch == L'\0' ? -1 : wcwidth( ch ); int chwidth = ch == L'\0' ? -1 : wcwidth( ch );
Cell *this_cell = nullptr; Cell *this_cell = 0;
switch ( chwidth ) { switch ( chwidth ) {
case 1: /* normal character */ case 1: /* normal character */