mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-26 14:00:56 +00:00
Avoid string in assert expression. Some systems are broken.
This commit is contained in:
parent
0b4723a689
commit
cb51d55ab2
1 changed files with 2 additions and 2 deletions
4
main.c
4
main.c
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue