summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 16:28:36 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 16:28:36 +0000
commit3742fa02b200bb2cf2511cc437d40a3e3bbc49a8 (patch)
treed746711195796f858dd6acf1c1de8f35af1a78a3 /crawl-ref
parentd979e8249244dca500b8a047ae5303798d20c9db (diff)
downloadcrawl-ref-3742fa02b200bb2cf2511cc437d40a3e3bbc49a8.tar.gz
crawl-ref-3742fa02b200bb2cf2511cc437d40a3e3bbc49a8.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5542 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/spells2.cc2
-rw-r--r--crawl-ref/source/spl-cast.cc2
-rw-r--r--crawl-ref/source/spl-cast.h3
3 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 2373a4144a..e401688d8d 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -2111,7 +2111,7 @@ bool summon_swarm(int pow, beh_type beha, bool god_gift)
return (success);
}
-void summon_things( int pow )
+void summon_things(int pow)
{
int big_things = 0;
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 7b2f18907b..155e585109 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -913,7 +913,7 @@ static bool _spell_is_uncastable(spell_type spell)
// Returns SPRET_SUCCESS if spell is successfully cast for purposes of
// exercising, SPRET_FAIL otherwise, or SPRET_ABORT if the player canceled
// the casting.
-spret_type your_spells( spell_type spell, int powc, bool allow_fail )
+spret_type your_spells(spell_type spell, int powc, bool allow_fail)
{
struct dist spd;
struct bolt beam;
diff --git a/crawl-ref/source/spl-cast.h b/crawl-ref/source/spl-cast.h
index 6e07fb32bc..26ca68c99a 100644
--- a/crawl-ref/source/spl-cast.h
+++ b/crawl-ref/source/spl-cast.h
@@ -65,8 +65,7 @@ void inspect_spells();
/* ***********************************************************************
* called from: ability - debug - it_use3 - spell
* *********************************************************************** */
-spret_type your_spells( spell_type spell, int powc = 0,
- bool allow_fail = true );
+spret_type your_spells(spell_type spell, int powc = 0, bool allow_fail = true);
// last updated 12may2000 {dlb}
/* ***********************************************************************