summaryrefslogtreecommitdiff
path: root/t/op/sprintf.t
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-01-01 00:16:33 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-01-01 00:16:45 -0800
commit7c533927e2b2b634c0bfb1840f970e3dc6401047 (patch)
treeaf5e320876e58564e995ebcd60a6156cf5589ef7 /t/op/sprintf.t
parentd0887bf355d814178137ea993a289e129329180b (diff)
downloadperl-7c533927e2b2b634c0bfb1840f970e3dc6401047.tar.gz
Suppress void warning in t/op/sprintf.t
Diffstat (limited to 't/op/sprintf.t')
-rw-r--r--t/op/sprintf.t2
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<