From 9f92fe4d6aec5a625b3c29c5c0a56c2adc945d65 Mon Sep 17 00:00:00 2001 From: linD026 Date: Sun, 10 Apr 2022 22:51:59 +0800 Subject: [PATCH] Fix wrong regular expression of clang-format --- examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Makefile b/examples/Makefile index 65f933e..95558a7 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -47,5 +47,5 @@ clean: $(RM) other/cat_noblock *.plist indent: - clang-format -i *[.ch] - clang-format -i other/*[.ch] + clang-format -i *.[ch] + clang-format -i other/*.[ch]