diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-04 00:44:03 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-04 00:44:03 +0200 |
commit | e2c2e345fd37a026815df29e0f77a635a9af332d (patch) | |
tree | e22cdcb4f44b5dcc91912b9b20f29660ba285f81 | |
parent | 9e6a709ee2f52a67a8af292c5db1af077f4096a3 (diff) |
checklinks: --remove: Fixed a warning
-rwxr-xr-x | bin/checklinks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checklinks b/bin/checklinks index 1ee4839..668b46d 100755 --- a/bin/checklinks +++ b/bin/checklinks @@ -51,7 +51,7 @@ sub remove_link { if (-l "$base/$link") { unlink("$base/$link") or warn("cannot unlink $base/$link: $!"); - print_format('removed', $link, '', 'red'); + print_format('removed', $link, '', 'red', 0); } } |