diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-04-27 21:31:54 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-04-27 21:31:54 +0200 |
commit | e834783cb800d7b6a0af505f904daf00c979a0f3 (patch) | |
tree | 4c3fb9d2394b969fa335da35a76789834b54592f /src/common/hexchat.c | |
parent | 01f24aae07fe3cd006eca2c2870dc51649dec2d4 (diff) |
Fix compiler warning
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 11694af3..41904412 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -51,8 +51,10 @@ #include "url.h" #include "hexchatc.h" +#include <glib-object.h> /*for g_type_init() */ + #ifdef USE_OPENSSL -#include <openssl/ssl.h> /* SSL_() */ +#include <openssl/ssl.h> /* SSL_() */ #include "ssl.h" #endif |