mirror of
https://github.com/glest/glest-source.git
synced 2025-08-20 23:21:19 +02:00
- updated win32 vc++ files to compile with new ftp server / client
This commit is contained in:
@@ -283,7 +283,7 @@ void LogFileThread::saveToDisk(bool forceSaveAll,bool logListAlreadyLocked) {
|
||||
// logCount = min(logCount,(std::size_t)2000000);
|
||||
//}
|
||||
|
||||
for(int i = 0; i < logCount; ++i) {
|
||||
for(unsigned int i = 0; i < logCount; ++i) {
|
||||
LogFileEntry &entry = tempLogList[i];
|
||||
SystemFlags::logDebugEntry(entry.type, entry.entry, entry.entryDateTime);
|
||||
}
|
||||
|
@@ -397,7 +397,7 @@ std::vector<string> IRCThread::GetIRCConnectedNickList(string target, bool waitF
|
||||
bool IRCThread::isConnected() {
|
||||
bool ret = false;
|
||||
if(ircSession != NULL) {
|
||||
ret = irc_is_connected(ircSession);
|
||||
ret = (irc_is_connected(ircSession) != 0);
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
Reference in New Issue
Block a user