From 1faa48a72b3443a53f87b91dc8ee18087e609cff Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 29 Dec 2008 11:21:28 -0500 Subject: Fixed up a bounds check in CoinListItem --- sigmod/CoinListItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sigmod/CoinListItem.cpp') 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) -- cgit