summaryrefslogtreecommitdiffstats
path: root/sigmod/CoinListItem.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-12-29 11:21:28 -0500
committerBen Boeckel <MathStuf@gmail.com>2008-12-29 11:21:28 -0500
commit1faa48a72b3443a53f87b91dc8ee18087e609cff (patch)
tree4d31d61e0742e4a46228bcc9b14758e47b6c84c9 /sigmod/CoinListItem.cpp
parent7c3595f03f5fa65dc6c6385934054d5e105097d5 (diff)
Fixed up a bounds check in CoinListItem
Diffstat (limited to 'sigmod/CoinListItem.cpp')
-rw-r--r--sigmod/CoinListItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigmod/CoinListItem.cpp b/sigmod/CoinListItem.cpp
index b631cb57..64ef7fce 100644
--- a/sigmod/CoinListItem.cpp
+++ b/sigmod/CoinListItem.cpp
@@ -94,7 +94,7 @@ CHECK_BEGIN(CoinListItem, int, object)
switch (m_type)
{
case Item:
- IBOUNDS(object, sigmod(), type)
+ IBOUNDS(object, sigmod(), item)
break;
case Species:
IBOUNDS(object, sigmod(), species)