summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monstuff.cc2
-rw-r--r--crawl-ref/source/monstuff.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 24860fc899..db999f59e5 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -8642,7 +8642,7 @@ void seen_monster(monsters *monster)
// the monster was moved.
//
//---------------------------------------------------------------
-bool shift_monster( monsters *mon, coord_def p )
+bool shift_monster(monsters *mon, coord_def p)
{
coord_def result;
diff --git a/crawl-ref/source/monstuff.h b/crawl-ref/source/monstuff.h
index 41604c31c5..63bd62f371 100644
--- a/crawl-ref/source/monstuff.h
+++ b/crawl-ref/source/monstuff.h
@@ -202,7 +202,7 @@ bool heal_monster(monsters *patient, int health_boost, bool permit_growth);
void seen_monster(monsters *monster);
-bool shift_monster(monsters *mon, coord_def p = coord_def(0,0) );
+bool shift_monster(monsters *mon, coord_def p = coord_def(0, 0));
int mons_weapon_damage_rating(const item_def &launcher);
int mons_missile_damage(monsters *mons, const item_def *launch,