summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-14 13:53:27 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-14 13:53:27 +0000
commitd0de96b23ce1d6e838c43a8dcaa5b5705e3cc027 (patch)
tree9e1e716677b819817766986f7a125708942666fe /crawl-ref/source/shopping.h
parentfc767d9b3b123f6bdf37e30b78200c06f042b570 (diff)
downloadcrawl-ref-d0de96b23ce1d6e838c43a8dcaa5b5705e3cc027.tar.gz
crawl-ref-d0de96b23ce1d6e838c43a8dcaa5b5705e3cc027.zip
Minor type-safety.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1862 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/shopping.h')
-rw-r--r--crawl-ref/source/shopping.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/shopping.h b/crawl-ref/source/shopping.h
index a6918e9c0a..c1f044eefe 100644
--- a/crawl-ref/source/shopping.h
+++ b/crawl-ref/source/shopping.h
@@ -28,6 +28,6 @@ const shop_struct *get_shop(int sx, int sy);
std::string shop_name(int sx, int sy);
-bool shoptype_identifies_stock(int shoptype);
+bool shoptype_identifies_stock(shop_type type);
#endif