summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/beam.cc2
-rw-r--r--crawl-ref/source/ouch.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 31070006d1..8964d0c3a1 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -5598,7 +5598,7 @@ std::string bolt::get_short_name() const
std::string beam_type_name(beam_type type)
{
- switch(type)
+ switch (type)
{
case BEAM_NONE: return("none");
case BEAM_MISSILE: return("missile");
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index 56367fede5..6c16582638 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -959,7 +959,7 @@ void ouch(int dam, int death_source, kill_method_type death_type,
if (death_type != KILLED_BY_XOM)
aux = "Xom";
}
- else if(strstr(aux, "Xom") == NULL)
+ else if (strstr(aux, "Xom") == NULL)
death_type = KILLED_BY_XOM;
}