- Fixed: Some non-POD arguments to printf and a typo in the GCC portion of dobject.h.

SVN r101 (trunk)
This commit is contained in:
Randy Heit 2006-05-10 03:29:07 +00:00
commit c70ba60fd6
3 changed files with 5 additions and 5 deletions

View file

@ -1924,7 +1924,7 @@ static bool C_TabCompleteList ()
Printf (TEXTCOLOR_BLUE "Completions for %s:\n", CmdLine+2);
for (i = TabPos; nummatches > 0; ++i, --nummatches)
{
Printf ("%-*s", int(maxwidth), TabCommands[i].Name);
Printf ("%-*s", int(maxwidth), TabCommands[i].Name.GetChars());
x += maxwidth;
if (x > ConCols - maxwidth)
{