Module Name: src Committed By: rillig Date: Thu Aug 13 19:30:37 UTC 2020
Modified Files: src/usr.bin/make: cond.c Log Message: make(1): fix type of local variable in CondGetString When the Boolean type from sprite.h is replaced with C99's standard bool type, the chained assignment leads to the following compile error with GCC 5: cond.c:404:5: error: suggest parentheses around assignment used as truth value [-Werror=parentheses] *quoted = qt = *condExpr == '"' ? 1 : 0; Changing the type of qt from int to bool fixes this. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 src/usr.bin/make/cond.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.