diff options
author | Larry W. Virden <lvirden@cas.org> | 1997-01-30 08:49:19 -0500 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-02-04 17:47:00 +1200 |
commit | 88793d73732ce69a444233da19c5b7ee8431f5a2 (patch) | |
tree | 0fac13910610805a788afd2acecabc723da1b43d /utils/c2ph.PL | |
parent | 5344da4ec91b18285fb144f52fd37c696c5187d4 (diff) | |
download | perl-88793d73732ce69a444233da19c5b7ee8431f5a2.tar.gz |
c2ph.PL fix
private-msgid: <199701301349.IAA16724@cas.org>
Diffstat (limited to 'utils/c2ph.PL')
-rw-r--r-- | utils/c2ph.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/c2ph.PL b/utils/c2ph.PL index bd4da34b61..e732d4d52a 100644 --- a/utils/c2ph.PL +++ b/utils/c2ph.PL @@ -1251,7 +1251,7 @@ main() { EOF for $type (@intrinsics) { - next if !type || $type eq 'void' || $type =~ /complex/; # sun stuff + next if !$type || $type eq 'void' || $type =~ /complex/; # sun stuff print <<"EOF"; printf(mask,sizeof($type), "$type"); EOF |