diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2012-06-15 16:57:50 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2012-06-15 17:26:26 +0100 |
commit | b4baa1fba20518e5a22919d70ed32cb25785dc54 (patch) | |
tree | 2dcbf806dec07dd887120399d385ca24003c6dcc | |
parent | 88e365b57be226c7f675db32798e980932144229 (diff) |
Fix dispatch table generation after whitespace/coding style changes
-rwxr-xr-x | hw/xwin/glx/gen_gl_wrappers.py | 2 |
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() |