Skip to content

Commit

Permalink
Fix Travis CI build.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichal authored and osschar committed Oct 10, 2019
1 parent 17b9a91 commit 50e1a9d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/XrdXrootd/XrdXrootdMonitor.cc
Expand Up @@ -105,11 +105,17 @@ extern XrdOucTrace *XrdXrootdTrace;

namespace XrdXrootdMonInfo
{

inline static int32_t InitStartTime()
{
return htonl( time( 0 ) );
}

XrdScheduler *Sched = 0;
XrdSysError *eDest = 0;
char *monHost = 0;
long long mySID = 0;
int32_t startTime = htonl(time(0));
int32_t startTime = InitStartTime();
int seq = 0;
XrdSysMutex seqMutex;
}
Expand Down

0 comments on commit 50e1a9d

Please sign in to comment.