summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/db_lint
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-06-04 05:06:31 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-06-04 05:06:31 +0200
commit53978678a3737092f568b3e0c4656756ed6ad764 (patch)
treec81284a568dd1efd169ef2e9e0e6895824047676 /crawl-ref/source/util/db_lint
parentc9076ee099bf8112dff8f7090e19f640d7da3523 (diff)
downloadcrawl-ref-53978678a3737092f568b3e0c4656756ed6ad764.tar.gz
crawl-ref-53978678a3737092f568b3e0c4656756ed6ad764.zip
db_lint: mention the source of dangling links.
Diffstat (limited to 'crawl-ref/source/util/db_lint')
-rwxr-xr-xcrawl-ref/source/util/db_lint2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/util/db_lint b/crawl-ref/source/util/db_lint
index 398b4d63b2..b47b8e4b45 100755
--- a/crawl-ref/source/util/db_lint
+++ b/crawl-ref/source/util/db_lint
@@ -122,7 +122,7 @@ sub check_desc_links()
for (keys %entries)
{
next unless $entries{$_} =~ /^<(.*)>$/;
- err "$source{$_}: Dangling link to '$1'\n" unless $entries{$1};
+ err "$source{$_}: Dangling link '$_' -> '$1'\n" unless $entries{$1};
}
}