summaryrefslogtreecommitdiff
path: root/ext/Sys
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-04-20 23:35:54 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-04-20 23:35:54 +0000
commite6c138cdb74ffbd3706f86d6768c25df4ba08689 (patch)
treeadaf55e65d65c8348d6643f52c749413043b6d3a /ext/Sys
parent251a23143f44171fe562bf459d6c2c4a65ff11d1 (diff)
downloadperl-e6c138cdb74ffbd3706f86d6768c25df4ba08689.tar.gz
In change 24266 I failed to actually change anything. Sigh.
p4raw-id: //depot/perl@24267
Diffstat (limited to 'ext/Sys')
-rw-r--r--ext/Sys/Syslog/Syslog.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Sys/Syslog/Syslog.pm b/ext/Sys/Syslog/Syslog.pm
index 7776cb2a04..f38238b377 100644
--- a/ext/Sys/Syslog/Syslog.pm
+++ b/ext/Sys/Syslog/Syslog.pm
@@ -115,7 +115,7 @@ Note that C<openlog> now takes three arguments, just like C<openlog(3)>.
=head1 EXAMPLES
openlog($program, 'cons,pid', 'user');
- syslog('info', 'this is another test');
+ syslog('info', '%s', 'this is another test');
syslog('mail|warning', 'this is a better test: %d', time);
closelog();