diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-04-20 23:35:54 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-04-20 23:35:54 +0000 |
commit | e6c138cdb74ffbd3706f86d6768c25df4ba08689 (patch) | |
tree | adaf55e65d65c8348d6643f52c749413043b6d3a /ext/Sys | |
parent | 251a23143f44171fe562bf459d6c2c4a65ff11d1 (diff) | |
download | perl-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.pm | 2 |
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(); |