dtc: Fix silly typo in dtc-checkfails.sh

Too much C coding makes for dumb errors in shell.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
David Gibson 2007-12-07 18:08:20 +11:00 committed by Jon Loeliger
parent b7c5eaf3ee
commit a68cbc09ff
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ fi


for c in $CHECKS; do for c in $CHECKS; do
if ! grep -E "^(ERROR)|(Warning) \($c\):" $LOG > /dev/null; then if ! grep -E "^(ERROR)|(Warning) \($c\):" $LOG > /dev/null; then
FAIL "Failed to trigger check \"%c\"" FAIL "Failed to trigger check \"$c\""
fi fi
done done