ERR: Fixed string literal to char* warnings.

This commit is contained in:
Brad King 2002-11-21 10:03:36 -05:00
parent e9687d931a
commit a7da3d4eff
1 changed files with 4 additions and 3 deletions

View File

@ -418,10 +418,10 @@ void cmCursesMainForm::PrintKeys(int process /* = 0 */)
} }
curses_move(y-4,0); curses_move(y-4,0);
char *fmt = "Press [enter] to edit option"; char fmt[512] = "Press [enter] to edit option";
if ( process ) if ( process )
{ {
fmt = " "; strcpy(fmt, " ");
} }
printw(fmt); printw(fmt);
curses_move(y-3,0); curses_move(y-3,0);
@ -581,7 +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);
printw("%s", bar); char s[] = "%s";
printw(s, bar);
attroff(A_STANDOUT); attroff(A_STANDOUT);
curses_move(y-4,0); curses_move(y-4,0);
printw(version); printw(version);