* Minor code cleanup.

This commit is contained in:
Paul Smith 1999-07-08 22:32:38 +00:00
parent e1d72ad3f1
commit 9035aa27b7
2 changed files with 3 additions and 4 deletions

5
main.c
View file

@ -1514,10 +1514,9 @@ int main (int argc, char ** argv)
if (any_remade)
goto re_exec;
else if (any_failed)
if (any_failed)
die (2);
else
break;
break;
}
case 0:

View file

@ -125,7 +125,7 @@ update_goal_chain (goals, makefiles)
while (g != 0)
{
/* Iterate over all double-colon entries for this file. */
struct file *file = g->file;
struct file *file;
int stop = 0, any_not_updated = 0;
for (file = g->file->double_colon ? g->file->double_colon : g->file;