Rename local variable

This commit is contained in:
Andy Cedilnik 2002-11-22 09:45:50 -05:00
parent 2a48ce12b1
commit 934d7d3dd6
1 changed files with 2 additions and 2 deletions

View File

@ -581,8 +581,8 @@ void cmCursesMainForm::UpdateStatusBar(const char* message)
// Now print both lines
curses_move(y-5,0);
attron(A_STANDOUT);
char s[] = "%s";
printw(s, bar);
char format[] = "%s";
printw(format, bar);
attroff(A_STANDOUT);
curses_move(y-4,0);
printw(version);