diff options
author | Peter Powell <petpow@saberuk.com> | 2019-05-06 17:35:45 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-05-06 17:35:45 +0100 |
commit | 3deeda7693182ed4bc6c163cc8fe476ccc5e278f (patch) | |
tree | 1311d7d51052c224819e27dca6b41a1e864018c0 /src | |
parent | 3bbf251efa501af7cc452031a4c6d824158b64a8 (diff) |
m_geo_maxmind: fix building on older libc versions.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/extra/m_geo_maxmind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_geo_maxmind.cpp b/src/modules/extra/m_geo_maxmind.cpp index f249ecf91..e57908a77 100644 --- a/src/modules/extra/m_geo_maxmind.cpp +++ b/src/modules/extra/m_geo_maxmind.cpp @@ -27,9 +27,9 @@ # pragma comment(lib, "libmaxminddb.lib") #endif -#include <maxminddb.h> #include "inspircd.h" #include "modules/geolocation.h" +#include <maxminddb.h> class GeolocationExtItem : public LocalExtItem { |