From 39c615eb89e1f00d185035026e7c5c682c85ffc8 Mon Sep 17 00:00:00 2001 From: Filip Bucek Date: Tue, 5 Nov 2019 14:41:40 +0100 Subject: [PATCH] fixed typo --- scripts/cppcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cppcheck.sh b/scripts/cppcheck.sh index 42f5183..7bb7b24 100755 --- a/scripts/cppcheck.sh +++ b/scripts/cppcheck.sh @@ -14,7 +14,7 @@ check_dir=$SRCDIR/../src main() { FAIL=0; - { ERROR="$( { cppcheck $check_dir --suppress=missingIncludeSystem --suppress=unusedFunctionf --enable=all -i $exclude_dir; } 2>&1 1>&3 3>&- )"; } 3>&1; + { ERROR="$( { cppcheck $check_dir --suppress=missingIncludeSystem --suppress=unusedFunction --enable=all -i $exclude_dir; } 2>&1 1>&3 3>&- )"; } 3>&1; if [ ! -z "$ERROR" ]; then echo "----------------------------------"