diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-13 10:00:22 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-13 10:00:22 +0200 |
commit | 885f1db0a306d49bb700b2cdfc86cbaaeb2d2fae (patch) | |
tree | 9b97f3e2546142666883b042277d803cacaa5066 /bin | |
parent | a3238f0c34a6ac9673201fa862d7cbed3a9f70dd (diff) |
checklinks: Fixed msglevel for 'removed' message
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/checklinks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checklinks b/bin/checklinks index 307e246..7467ad4 100755 --- a/bin/checklinks +++ b/bin/checklinks @@ -52,7 +52,7 @@ sub remove_link { if (-l "$base/$link") { unlink("$base/$link") or warn("cannot unlink $base/$link: $!"); - print_format('removed', $link, '', 'red', 0); + print_format('removed', $link, '', 'red', 1); } } |