This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
4c88d5e
)
regen/embed.pl: Fix uninit variable warning.
author
Karl Williamson
<public@khwilliamson.com>
Tue, 20 Nov 2012 00:38:18 +0000
(17:38 -0700)
committer
Karl Williamson
<public@khwilliamson.com>
Tue, 20 Nov 2012 01:00:43 +0000
(18:00 -0700)
regen/embed.pl
patch
|
blob
|
blame
|
history
diff --git
a/regen/embed.pl
b/regen/embed.pl
index
1f5b749
..
2a47e86
100755
(executable)
--- a/
regen/embed.pl
+++ b/
regen/embed.pl
@@
-92,7
+92,7
@@
my ($embed, $core, $ext, $api) = setup_embed();
else {
$type = $1 eq 's' ? "STATIC" : "PERL_STATIC_INLINE";
}
- warn "$func: i and s flags are mutually exclusive"
+ warn "$
plain_
func: i and s flags are mutually exclusive"
if $flags =~ /s/ && $flags =~ /i/;
$retval = "$type $splint_flags$retval";
$func = "S_$plain_func";