Core/DBLayer: Fixed mismatched field type in auction house prepared statement.

Closes #9694
This commit is contained in:
Shauren
2013-04-26 22:46:43 +02:00
parent 23c5e4b322
commit 118ec195a6

View File

@@ -658,7 +658,7 @@ void AuctionEntry::SaveToDB(SQLTransaction& trans) const
stmt->setUInt32(2, itemGUIDLow);
stmt->setUInt32(3, owner);
stmt->setInt32 (4, int32(buyout));
stmt->setUInt64(5, uint64(expire_time));
stmt->setUInt32(5, uint32(expire_time));
stmt->setUInt32(6, bidder);
stmt->setInt32 (7, int32(bid));
stmt->setInt32 (8, int32(startbid));