summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/exclude.cc
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-10-29 04:00:59 -0700
committerMatthew Cline <zelgadis@sourceforge.net>2009-10-29 04:00:59 -0700
commit264be665983a45b6c8d08f73cda95650ecdc2361 (patch)
treeaae8ebe38f1e60e55a874f0ac4851949cfbeb2ce /crawl-ref/source/exclude.cc
parentcecf00e3299727153d5cf130c0b9ae30c200f75d (diff)
downloadcrawl-ref-264be665983a45b6c8d08f73cda95650ecdc2361.tar.gz
crawl-ref-264be665983a45b6c8d08f73cda95650ecdc2361.zip
exclude.cc: was passing too many parms to mprf()
Diffstat (limited to 'crawl-ref/source/exclude.cc')
-rw-r--r--crawl-ref/source/exclude.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/exclude.cc b/crawl-ref/source/exclude.cc
index 65fcd827e9..e68464cef5 100644
--- a/crawl-ref/source/exclude.cc
+++ b/crawl-ref/source/exclude.cc
@@ -336,7 +336,7 @@ void maybe_remove_autoexclusion(const coord_def &p)
mprf(MSGCH_DIAGNOSTICS, "maybe_remove_autoexclusion(): "
"exclusion at (%d, %d) not really an auto-exclude "
"[bug #2887690]; fixing",
- (int) exc->mon, exc->pos.x, exc->pos.y);
+ exc->pos.x, exc->pos.y);
exc->autoex = false;
return;
}