summaryrefslogtreecommitdiff
path: root/bin/checklinks
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-04 00:44:03 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-04 00:44:03 +0200
commite2c2e345fd37a026815df29e0f77a635a9af332d (patch)
treee22cdcb4f44b5dcc91912b9b20f29660ba285f81 /bin/checklinks
parent9e6a709ee2f52a67a8af292c5db1af077f4096a3 (diff)
checklinks: --remove: Fixed a warning
Diffstat (limited to 'bin/checklinks')
-rwxr-xr-xbin/checklinks2
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);
}
}