]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/fjoin.cpp
Remove redundant PriorityState, enum Priority does the exact same thing.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / fjoin.cpp
index 360e6d5c8ec912e8be7215341ff0a96812bcdc36..55c72c474e50571abe43f5e0e0ed0e03b500a087 100644 (file)
@@ -84,7 +84,8 @@ bool TreeSocket::ForceJoin(const std::string &source, std::deque<std::string> &p
        {
                time_t ourTS = chan->age;
 
-               ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu", chan->name.c_str(), (unsigned long)TS, (unsigned long)TS, (unsigned long)ourTS - TS);
+               ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu",
+                       chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)ourTS - (unsigned long)TS);
                /* If our TS is less than theirs, we dont accept their modes */
                if (ourTS < TS)
                {