From da789987956ac424de54d2dfd295479eebfdde71 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sat, 30 Nov 2013 14:08:56 -0500 Subject: [PATCH] Warn really only needs one arg. --- calendar-import.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar-import.plx b/calendar-import.plx index d1da138..651aee4 100644 --- a/calendar-import.plx +++ b/calendar-import.plx @@ -136,7 +136,7 @@ my $LOCK_CLEANUP_CODE = sub { sub DieLog ($;$) { DoLog("die", undef, $_[0], $_[1]); } - sub WarnLog ($$) { + sub WarnLog ($;$) { DoLog("warn", $_[0], $_[1]); } }