summaryrefslogtreecommitdiffstats
path: root/bin/format_source
diff options
context:
space:
mode:
Diffstat (limited to 'bin/format_source')
-rwxr-xr-xbin/format_source2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/format_source b/bin/format_source
index 227d22a..1d9e88a 100755
--- a/bin/format_source
+++ b/bin/format_source
@@ -21,6 +21,6 @@ find . \( -type d -path ./config -prune -and -not -path ./config \) \
-or -name H5overflow.h \
\) \) \
-and \( -iname *.h -or -iname *.c -or -iname *.cpp -or -iname *.hpp -or -iname *.java \) \) \
- | xargs clang-format -style=file -i -fallback-style=none
+ | xargs -P0 -n1 clang-format -style=file -i -fallback-style=none
exit 0