From 7c533927e2b2b634c0bfb1840f970e3dc6401047 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sun, 1 Jan 2012 00:16:33 -0800 Subject: [PATCH] Suppress void warning in t/op/sprintf.t --- t/op/sprintf.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/op/sprintf.t b/t/op/sprintf.t index 05fe1de..9c942b4 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< -- 1.8.3.1