Avoid string in assert expression. Some systems are broken.

This commit is contained in:
Roland McGrath 1995-03-27 10:28:35 +00:00
parent 0b4723a689
commit cb51d55ab2

4
main.c
View file

@ -925,9 +925,9 @@ main (argc, argv, envp)
switch (update_goal_chain (read_makefiles, 1))
{
case 1:
assert ("Status indicates -q set while remaking makefiles!");
default:
assert ("bogus status from update_goal_chain");
#define BOGUS_UPDATE_STATUS 1
assert (BOGUS_UPDATE_STATUS);
break;
case -1: