Index: tools/check-name-clashes.py |
diff --git a/tools/check-name-clashes.py b/tools/check-name-clashes.py |
index fcc70a5281e5e846f9b53cb6692a27cdde1f8339..25f3aace55ba62a2ec12039f429f3dac8050709c 100755 |
--- a/tools/check-name-clashes.py |
+++ b/tools/check-name-clashes.py |
@@ -9,7 +9,7 @@ import re |
import sys |
FILENAME = "src/runtime/runtime.h" |
-LISTHEAD = re.compile(r"#define\s+(\w+LIST\w*)\((\w+)\)") |
+LISTHEAD = re.compile(r"#define\s+(FOR_EACH_\w+)\((\w+)\)") |
LISTBODY = re.compile(r".*\\$") |