mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 09:06:46 +00:00
lots of my_ulongulong explicit conversions
This commit is contained in:
+7
-7
@@ -4886,7 +4886,7 @@ std::list<SpawnedBotsList> Bot::ListSpawnedBots(uint32 characterID, std::string*
|
||||
*errorMessage = std::string(ErrBuf);
|
||||
}
|
||||
else {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
@@ -4986,7 +4986,7 @@ std::list<BotGroup> Bot::LoadBotGroup(std::string botGroupName, std::string* err
|
||||
*errorMessage = std::string(ErrBuf);
|
||||
}
|
||||
else {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
@@ -5025,7 +5025,7 @@ std::list<BotGroupList> Bot::GetBotGroupListByBotOwnerCharacterId(uint32 botOwne
|
||||
*errorMessage = std::string(ErrBuf);
|
||||
}
|
||||
else {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
@@ -5059,7 +5059,7 @@ bool Bot::DoesBotGroupNameExist(std::string botGroupName) {
|
||||
MYSQL_ROW DataRow;
|
||||
|
||||
if(database.RunQuery(Query, MakeAnyLenString(&Query, "select BotGroupId from vwBotGroups where BotGroupName = '%s'", botGroupName.c_str()), 0, &DatasetResult)) {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
@@ -5099,7 +5099,7 @@ uint32 Bot::CanLoadBotGroup(uint32 botOwnerCharacterId, std::string botGroupName
|
||||
*errorMessage = std::string(ErrBuf);
|
||||
}
|
||||
else {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
@@ -5139,7 +5139,7 @@ uint32 Bot::GetBotGroupIdByBotGroupName(std::string botGroupName, std::string* e
|
||||
*errorMessage = std::string(ErrBuf);
|
||||
}
|
||||
else {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
@@ -5170,7 +5170,7 @@ uint32 Bot::GetBotGroupLeaderIdByBotGroupName(std::string botGroupName) {
|
||||
MYSQL_ROW DataRow;
|
||||
|
||||
if(database.RunQuery(Query, MakeAnyLenString(&Query, "select BotGroupLeaderBotId from vwBotGroups where BotGroupName = '%s'", botGroupName.c_str()), 0, &DatasetResult)) {
|
||||
uint32 RowCount = mysql_num_rows(DatasetResult);
|
||||
uint32 RowCount = (uint32)mysql_num_rows(DatasetResult);
|
||||
|
||||
if(RowCount > 0) {
|
||||
for(int iCounter = 0; iCounter < RowCount; iCounter++) {
|
||||
|
||||
@@ -11649,7 +11649,7 @@ void Client::Handle_OP_GMSearchCorpse(const EQApplicationPacket *app)
|
||||
EscSearchString, MaxResults), errbuf, &Result))
|
||||
{
|
||||
|
||||
int NumberOfRows = mysql_num_rows(Result);
|
||||
int NumberOfRows = (int)mysql_num_rows(Result);
|
||||
|
||||
if(NumberOfRows == MaxResults)
|
||||
Message(clientMessageError, "Your search found too many results; some are not displayed.");
|
||||
|
||||
+1
-1
@@ -2018,7 +2018,7 @@ void Client::SendBuyerResults(char* SearchString, uint32 SearchID) {
|
||||
if (database.RunQuery(Query,MakeAnyLenString(&Query, "select * from buyer where itemname like '%%%s%%' order by charid limit %i",
|
||||
EscSearchString, RuleI(Bazaar, MaxBarterSearchResults)), errbuf, &Result)) {
|
||||
|
||||
int NumberOfRows = mysql_num_rows(Result);
|
||||
int NumberOfRows = (int)mysql_num_rows(Result);
|
||||
|
||||
if(NumberOfRows == RuleI(Bazaar, MaxBarterSearchResults))
|
||||
Message(15, "Your search found too many results; some are not displayed.");
|
||||
|
||||
Reference in New Issue
Block a user