summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2012-06-15 16:57:50 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2012-06-15 17:26:26 +0100
commitb4baa1fba20518e5a22919d70ed32cb25785dc54 (patch)
tree2dcbf806dec07dd887120399d385ca24003c6dcc
parent88e365b57be226c7f675db32798e980932144229 (diff)
Fix dispatch table generation after whitespace/coding style changes
-rwxr-xr-xhw/xwin/glx/gen_gl_wrappers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/glx/gen_gl_wrappers.py b/hw/xwin/glx/gen_gl_wrappers.py
index 79fbeefe8..0ff579ac0 100755
--- a/hw/xwin/glx/gen_gl_wrappers.py
+++ b/hw/xwin/glx/gen_gl_wrappers.py
@@ -67,7 +67,7 @@ if dispatchheader :
fh = open(dispatchheader)
dispatchh = fh.readlines()
- dispatch_regex = re.compile(r'(?:#define|static\sinline\svoid)\sSET_(\S*)\(')
+ dispatch_regex = re.compile(r'(?:#define\s|static\sinline\svoid\s|)SET_(\S*)\(')
for line in dispatchh :
line = line.strip()