summaryrefslogtreecommitdiff
path: root/tools/HPMHookGen
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-01-22 00:41:56 +0100
committerHaru <haru@dotalux.com>2015-01-22 00:41:56 +0100
commite1b9abba3ae76aa7a6c310abdf485cd34ab4057d (patch)
tree9a0711a3cda48c4b64909bdfd8acab841df81ee6 /tools/HPMHookGen
parent40f73981d9bacfc9e7b032790a5c35e32f68ac2a (diff)
downloadhercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.tar.gz
hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.tar.bz2
hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.tar.xz
hercules-e1b9abba3ae76aa7a6c310abdf485cd34ab4057d.zip
HPMHookGen compatibility fix for doxygen 1.8.9.x
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'tools/HPMHookGen')
-rwxr-xr-xtools/HPMHookGen/HPMHookGen.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/HPMHookGen/HPMHookGen.pl b/tools/HPMHookGen/HPMHookGen.pl
index c11293d93..03b32394c 100755
--- a/tools/HPMHookGen/HPMHookGen.pl
+++ b/tools/HPMHookGen/HPMHookGen.pl
@@ -24,7 +24,7 @@ sub parse($$) {
$p =~ s/^.*?\)\((.*)\).*$/$1/; # Clean up extra parentheses )(around the arglist)
# Retrieve return type
- unless ($d =~ /^(.+)\(\*\s*[a-zA-Z0-9_]+_interface::([^\)]+)\s*\)\(.*\)$/) {
+ unless ($d =~ /^(.+)\(\*\s*[a-zA-Z0-9_]+_interface::([^\)]+)\s*\)\s*\(.*\)$/) {
print "Error: unable to parse '$d'\n";
return {};
}