Kaydet (Commit) 53a0121f authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix accept pointer signedness warning portably (hopefully) using socklen_t.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/branches/unstable@5974 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 9ca8db63
......@@ -588,7 +588,7 @@ gboolean socket_lock_input_cb(GIOChannel *source, GIOCondition condition, gpoint
gint fd, sock;
gchar buf[BUFFER_LENGTH];
struct sockaddr_in caddr;
guint caddr_len = sizeof(caddr);
socklen_t caddr_len = sizeof(caddr);
GtkWidget *window = data;
gboolean popup = FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment