cosider different size of size_t type on 32bits and 64bits arches

This commit is contained in:
Andrzej Rybczak
2009-07-03 04:34:25 +02:00
parent 966510249b
commit 9faf3acf2f
3 changed files with 8 additions and 2 deletions

View File

@@ -860,7 +860,7 @@ Window &Window::operator<<(const wstring &ws)
Window &Window::operator<<(size_t s)
{
wprintw(itsWindow, "%u", s);
wprintw(itsWindow, SIZE_T_FORMAT, s);
return *this;
}