summary refs log tree commit diff stats
path: root/src/common/plugin-identd.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2015-03-19 16:06:49 -0400
committerTingPing <tingping@tingping.se>2015-03-19 16:06:49 -0400
commitb4906f3d230c22c807cdb00b72de0d60491bba76 (patch)
tree7a91908c6e7515217d7dd85bfe4a425b0ecd6d7c /src/common/plugin-identd.c
parent4e338a2b70205e39556b51f774dbcc65eed971c4 (diff)
Fix warnings
Diffstat (limited to 'src/common/plugin-identd.c')
-rw-r--r--src/common/plugin-identd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/plugin-identd.c b/src/common/plugin-identd.c
index c8936d8b..ce1bd1e6 100644
--- a/src/common/plugin-identd.c
+++ b/src/common/plugin-identd.c
@@ -27,12 +27,12 @@ static hexchat_plugin *ph;
 static GSocketService *service;
 static GHashTable *responses;
 
-struct ident_info
+typedef struct ident_info
 {
 	GSocketConnection *conn;
 	gchar *username;
 	gchar read_buf[16];
-} typedef ident_info;
+} ident_info;
 
 static int
 identd_cleanup_response_cb (gpointer userdata)