From 2d95b45a802eeb70dcee0d254bb9a81f0be6dfa5 Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Thu, 24 Apr 2014 16:15:10 -0700 Subject: [PATCH] aiaiai-checker: use --no-data for smatch Otherwise smatch complains about missing data, which will show up in diff-log when new files are added. Signed-off-by: Artem Bityutskiy --- helpers/aiaiai-checker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/aiaiai-checker b/helpers/aiaiai-checker index b3f7274..6aa8e79 100755 --- a/helpers/aiaiai-checker +++ b/helpers/aiaiai-checker @@ -185,7 +185,7 @@ fi if [ -n "$run_smatch" ]; then # Smatch uses stderr for reporting about internal issues and stdout for # check results - smatch --project=kernel "$@" > "$tmpdir/smatch" 2>/dev/null & + smatch --no-data --project=kernel "$@" > "$tmpdir/smatch" 2>/dev/null & pid_smatch="$!" fi if [ -n "$run_cppcheck" ]; then -- 2.50.1