diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-12-29 11:21:28 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-12-29 11:21:28 -0500 |
| commit | 1faa48a72b3443a53f87b91dc8ee18087e609cff (patch) | |
| tree | 4d31d61e0742e4a46228bcc9b14758e47b6c84c9 | |
| parent | 7c3595f03f5fa65dc6c6385934054d5e105097d5 (diff) | |
Fixed up a bounds check in CoinListItem
| -rw-r--r-- | sigmod/CoinListItem.cpp | 2 |
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) |
