dtc: Fix silly typo in dtc-checkfails.sh

Too much C coding makes for dumb errors in shell.

Signed-off-by: David Gibson <[email protected]>
diff --git a/tests/dtc-checkfails.sh b/tests/dtc-checkfails.sh
index 16a93e8..23e1ba0 100755
--- a/tests/dtc-checkfails.sh
+++ b/tests/dtc-checkfails.sh
@@ -23,7 +23,7 @@
 
 for c in $CHECKS; do
     if ! grep -E "^(ERROR)|(Warning) \($c\):" $LOG > /dev/null; then
-	FAIL "Failed to trigger check \"%c\""
+	FAIL "Failed to trigger check \"$c\""
     fi
 done