diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 939f244e..eaa4b8ee 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 => 652, + BUILD_REVISION => 653, BUILD_DATE => "2014-06-17", }; diff --git a/modules/c2english/CGrammar.pm b/modules/c2english/CGrammar.pm index 321d7b74..b1a6ff32 100644 --- a/modules/c2english/CGrammar.pm +++ b/modules/c2english/CGrammar.pm @@ -1210,12 +1210,12 @@ pointer: '*' type_qualifier_list(s) pointer(?) { $return = join('', @{$item{'pointer(?)'}}) if @{$item{'pointer(?)'}}; - $return .= ' ' . join('', @{$item{'type_qualifier_list(s)'}}) . ' pointer to a '; + $return .= ' ' . join('', @{$item{'type_qualifier_list(s)'}}) . ' pointer to '; } | '*' pointer(?) { $return = join('', @{$item{'pointer(?)'}}); - $return .= ' pointer to a'; + $return .= ' pointer to '; } type_qualifier_list: