COMP: Changed while(1) to for(;;) to avoid warning about constant control expression.

This commit is contained in:
Brad King 2005-05-03 14:57:32 -04:00
parent 7b7f1db00a
commit c7a75e92c9
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ void cmCursesLongMessageForm::HandleInput()
char debugMessage[128];
while(1)
for(;;)
{
int key = getch();

View File

@ -848,7 +848,7 @@ void cmCursesMainForm::HandleInput()
char debugMessage[128];
while(1)
for(;;)
{
this->UpdateStatusBar();
this->PrintKeys();