diff options
Diffstat (limited to 'tools/codeformat.py')
-rwxr-xr-x | tools/codeformat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/codeformat.py b/tools/codeformat.py index 0a8bf2e0f4..2fe72ef33d 100755 --- a/tools/codeformat.py +++ b/tools/codeformat.py @@ -168,7 +168,7 @@ def main(): # Format C files with uncrustify. if format_c: - batch(["uncrustify", "-c", UNCRUSTIFY_CFG, "-lC", "--no-backup"], lang_files(C_EXTS)) + batch(["uncrustify", "-q", "-c", UNCRUSTIFY_CFG, "-lC", "--no-backup"], lang_files(C_EXTS)) for file in lang_files(C_EXTS): fixup_c(file) |