diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-12 19:50:23 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-12 19:50:23 +0000 |
commit | 5ed94d962740ee1c86f3ae87960056a6aa97e955 (patch) | |
tree | e8926d64fb59379caa668c1b692d3b92bbabfe57 /include/inspircd.h | |
parent | f5d5cee19ae1153adae20ee8143d18d61b407b2c (diff) |
Fix conversion warnings on g++ 3.4
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12443 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 16281f2cc..5f8fb1992 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -228,7 +228,7 @@ class serverstats */ serverstats() : statsAccept(0), statsRefused(0), statsUnknown(0), statsCollisions(0), statsDns(0), - statsDnsGood(0), statsDnsBad(0), statsConnects(0), statsSent(0.0), statsRecv(0.0) + statsDnsGood(0), statsDnsBad(0), statsConnects(0), statsSent(0), statsRecv(0) { } }; |