diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index afbfdd87..939f244e 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 651, + BUILD_REVISION => 652, BUILD_DATE => "2014-06-17", }; diff --git a/modules/c2english/CGrammar.pm b/modules/c2english/CGrammar.pm index fa358838..321d7b74 100644 --- a/modules/c2english/CGrammar.pm +++ b/modules/c2english/CGrammar.pm @@ -1209,13 +1209,13 @@ identifier: pointer: '*' type_qualifier_list(s) pointer(?) { - $return = join('', @{$item{'type_qualifier_list(s)'}}) . ' pointer to a '; - $return .= ' ' . join('', @{$item{'pointer(?)'}}) if @{$item{'pointer(?)'}}; + $return = join('', @{$item{'pointer(?)'}}) if @{$item{'pointer(?)'}}; + $return .= ' ' . join('', @{$item{'type_qualifier_list(s)'}}) . ' pointer to a '; } | '*' pointer(?) { - $return .= 'pointer to a'; - $return .= ' ' . join('', @{$item{'pointer(?)'}}); + $return = join('', @{$item{'pointer(?)'}}); + $return .= ' pointer to a'; } type_qualifier_list: