diff options
author | dz <dz@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-01-28 11:27:10 +0000 |
---|---|---|
committer | dz <dz@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-01-28 11:27:10 +0000 |
commit | 117742632909d9bfd71fc4feb3304263558101b7 (patch) | |
tree | c62cf61548c503aead3d2619ecdf240e4720c218 /src/modules/m_shun.cpp | |
parent | fd820825ac669c9cd8cc8b7a69ca855159b0d3cb (diff) |
Note to self, cast time_t to long int for printf... thanks Ankit for pointing this out.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11012 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_shun.cpp')
-rw-r--r-- | src/modules/m_shun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp index 25ddfcb58..1127d397d 100644 --- a/src/modules/m_shun.cpp +++ b/src/modules/m_shun.cpp @@ -54,7 +54,7 @@ public: void DisplayExpiry() { - ServerInstance->SNO->WriteToSnoMask('x',"Removing expired shun %s (set by %s %ld seconds ago)", this->matchtext.c_str(), this->source, ServerInstance->Time() - this->set_time); + ServerInstance->SNO->WriteToSnoMask('x',"Removing expired shun %s (set by %s %ld seconds ago)", this->matchtext.c_str(), this->source, (long int)(ServerInstance->Time() - this->set_time)); } const char* Displayable() |