diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-10-23 19:21:04 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-10-23 23:22:32 +0200 |
commit | 9e775eee3ec964806209656509446b7e1bb92063 (patch) | |
tree | b9c60011a9342816e427f0f453acb7e169033401 /bin/fixincludeguards.sh | |
parent | 1130a359cb89028b42f366f46bdf034ad13ae540 (diff) |
be verbose about which guard definition is problematic
Change-Id: I883acce26266b304e83bf898f86da12549a112e5
Diffstat (limited to 'bin/fixincludeguards.sh')
-rwxr-xr-x | bin/fixincludeguards.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fixincludeguards.sh b/bin/fixincludeguards.sh index 990a43bbfb47..5a6347f4574e 100755 --- a/bin/fixincludeguards.sh +++ b/bin/fixincludeguards.sh @@ -42,7 +42,7 @@ for fn in "$@"; do if [ aa"`git grep -w "$old_guard" | cut -d ':' -f1 | sort -u | wc -l `" != aa"1" ]; then - echo -e "$fn: \e[00;31mwarning:\e[00m guard definition used in other files" + echo -e "$fn: \e[00;31mwarning:\e[00m $old_guard guard definition used in other files" continue fi |