Rename local variable
This commit is contained in:
parent
2a48ce12b1
commit
934d7d3dd6
|
@ -581,8 +581,8 @@ void cmCursesMainForm::UpdateStatusBar(const char* message)
|
||||||
// Now print both lines
|
// Now print both lines
|
||||||
curses_move(y-5,0);
|
curses_move(y-5,0);
|
||||||
attron(A_STANDOUT);
|
attron(A_STANDOUT);
|
||||||
char s[] = "%s";
|
char format[] = "%s";
|
||||||
printw(s, bar);
|
printw(format, bar);
|
||||||
attroff(A_STANDOUT);
|
attroff(A_STANDOUT);
|
||||||
curses_move(y-4,0);
|
curses_move(y-4,0);
|
||||||
printw(version);
|
printw(version);
|
||||||
|
|
Loading…
Reference in New Issue