diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-01-01 00:16:33 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-01-01 00:16:45 -0800 |
commit | 7c533927e2b2b634c0bfb1840f970e3dc6401047 (patch) | |
tree | af5e320876e58564e995ebcd60a6156cf5589ef7 /t/op/sprintf.t | |
parent | d0887bf355d814178137ea993a289e129329180b (diff) | |
download | perl-7c533927e2b2b634c0bfb1840f970e3dc6401047.tar.gz |
Suppress void warning in t/op/sprintf.t
Diffstat (limited to 't/op/sprintf.t')
-rw-r--r-- | t/op/sprintf.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/sprintf.t b/t/op/sprintf.t index 05fe1dec0c..9c942b4931 100644 --- a/t/op/sprintf.t +++ b/t/op/sprintf.t @@ -437,7 +437,7 @@ __END__ >%m< >''< >%m INVALID< >%s< >sprintf('%%n%n %d', $n, $n)< >%n 2< >Slight sneakiness to test %n< >%s< >$n="abc"; sprintf(' %n%s', substr($n,1,1), $n)< > a1c< >%n w/magic< ->%s< >sprintf('%s%n', chr(256)x5, $n),$n< >5< >Unicode %n< +>%s< >no warnings; sprintf('%s%n', chr(256)x5, $n),$n< >5< >Unicode %n< >%o< >2**32-1< >37777777777< >%+o< >2**32-1< >37777777777< >%#o< >2**32-1< >037777777777< |