- fixed handling of "void" despite the case

This commit is contained in:
rconde 2014-03-15 19:01:27 -04:00
parent f7aca0a762
commit 3091aad3b3

View File

@ -47,7 +47,7 @@ sub make_pfn_alias($%)
my $fixed_up_calllist = ""; my $fixed_up_calllist = "";
#if the parm list is void, nothing to substitute #if the parm list is void, nothing to substitute
if($parms ne "void") if(lc($parms) ne "void")
{ {
#split parms #split parms
my @split_parms = split(/,/,$parms); my @split_parms = split(/,/,$parms);