summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-20 19:06:47 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-20 19:06:47 +0000
commit0da6681bc0a2f308f9bca6e030adf9a54bc3b959 (patch)
treeb64e201111e3c3882a615a7bd3b652a7a036a28f /crawl-ref/source/itemprop.cc
parent3a83e92a99ce7a161f36e0bd2f1412580ef9bca0 (diff)
downloadcrawl-ref-0da6681bc0a2f308f9bca6e030adf9a54bc3b959.tar.gz
crawl-ref-0da6681bc0a2f308f9bca6e030adf9a54bc3b959.zip
Spacing fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10356 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index 3a152f679d..d2f104963a 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -2333,8 +2333,8 @@ bool can_cut_meat(const item_def &item)
bool is_fruit(const item_def & item)
{
- if(item.base_type != OBJ_FOOD)
- return false;
+ if (item.base_type != OBJ_FOOD)
+ return (false);
switch (item.sub_type)
{
@@ -2350,10 +2350,10 @@ bool is_fruit(const item_def & item)
case FOOD_RAMBUTAN:
case FOOD_STRAWBERRY:
case FOOD_SULTANA:
- return true;
+ return (true);
};
- return false;
+ return (false);
}
bool food_is_rotten(const item_def &item)
{