mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-15 12:09:06 +00:00
Changed: GCC warnings
This commit is contained in:
parent
f96c9d9b21
commit
f6c3919e14
1 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ public:
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// get the start time
|
// get the start time
|
||||||
time_t startTime;
|
time_t startTime;
|
||||||
time( &startTime );
|
time( &startTime );
|
||||||
|
@ -73,7 +73,7 @@ public:
|
||||||
// execute hourly tasks
|
// execute hourly tasks
|
||||||
NLMISC::CConfigFile::CVar *commandsVar = NLNET::IService::getInstance()->ConfigFile.getVarPtr("HourlyCommands");
|
NLMISC::CConfigFile::CVar *commandsVar = NLNET::IService::getInstance()->ConfigFile.getVarPtr("HourlyCommands");
|
||||||
WARN_IF(commandsVar == NULL,"'HourlyCommands' not found in cfg file");
|
WARN_IF(commandsVar == NULL,"'HourlyCommands' not found in cfg file");
|
||||||
|
|
||||||
// if we have hourly commands...
|
// if we have hourly commands...
|
||||||
if (commandsVar!=NULL)
|
if (commandsVar!=NULL)
|
||||||
{
|
{
|
||||||
|
@ -104,7 +104,7 @@ public:
|
||||||
FILE* fileHandle= fopen(HourlyActivityLogFileName,"ab");
|
FILE* fileHandle= fopen(HourlyActivityLogFileName,"ab");
|
||||||
nlassert(fileHandle!=NULL);
|
nlassert(fileHandle!=NULL);
|
||||||
fprintf(fileHandle,"%02u/%02u/%u CHourlyTaskScheduler: Started: %02u:%02u, Finished: %02u:%02u, Executed %u commands Started %u Jobs\n",
|
fprintf(fileHandle,"%02u/%02u/%u CHourlyTaskScheduler: Started: %02u:%02u, Finished: %02u:%02u, Executed %u commands Started %u Jobs\n",
|
||||||
ptm->tm_mday, ptm->tm_mon+1, ptm->tm_year+1900, startTime/3600%24, startTime/60%60, endTime/3600%24, endTime/60%60, commandsVar==NULL?0:commandsVar->size(), jobsRemaining );
|
ptm->tm_mday, ptm->tm_mon+1, ptm->tm_year+1900, (uint)startTime/3600%24, (uint)startTime/60%60, (uint)endTime/3600%24, (uint)endTime/60%60, commandsVar==NULL?0:commandsVar->size(), jobsRemaining );
|
||||||
nlinfo("JobManager state: %s",CJobManager::getInstance()->getStatus().c_str());
|
nlinfo("JobManager state: %s",CJobManager::getInstance()->getStatus().c_str());
|
||||||
fclose(fileHandle);
|
fclose(fileHandle);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue