diff options
| author | 2008-03-30 02:48:54 +0000 | |
|---|---|---|
| committer | 2008-03-30 02:48:54 +0000 | |
| commit | 58385dd458e927994957b6d603f7f9da3fc52e14 (patch) | |
| tree | 70c39a58446bd4f60205a9c34cac78524a67dc54 /src/modules/m_xmlsocket.cpp | |
| parent | The bug we fixed for bug #506 may still occur in trunk if a module adjusts th... (diff) | |
Commit -Wformat=2 -Wmissing-format-attributes, printf-like functions in inspircd now get treated like printf (meaning compile-time check goodness) in GCC
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9217 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_xmlsocket.cpp')
| -rw-r--r-- | src/modules/m_xmlsocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_xmlsocket.cpp b/src/modules/m_xmlsocket.cpp index f3bd530f7..821a8363b 100644 --- a/src/modules/m_xmlsocket.cpp +++ b/src/modules/m_xmlsocket.cpp @@ -71,7 +71,7 @@ class ModuleXMLSocket : public Module } catch (ModuleException &e) { - ServerInstance->Logs->Log("m_xmlsocket",DEFAULT, "m_xmlsocket.so: FAILED to enable XMLSocket on port %d: %s. Maybe you have another similar module loaded?", portno, e.GetReason()); + ServerInstance->Logs->Log("m_xmlsocket",DEFAULT, "m_xmlsocket.so: FAILED to enable XMLSocket on port %ld: %s. Maybe you have another similar module loaded?", portno, e.GetReason()); } } } |
