Warn really only needs one arg.

This commit is contained in:
Bradley M. Kuhn 2013-11-30 14:08:56 -05:00
parent 746bc48850
commit da78998795

View file

@ -136,7 +136,7 @@ my $LOCK_CLEANUP_CODE = sub {
sub DieLog ($;$) {
DoLog("die", undef, $_[0], $_[1]);
}
sub WarnLog ($$) {
sub WarnLog ($;$) {
DoLog("warn", $_[0], $_[1]);
}
}