SF.net SVN: geany:[5971] trunk/src/socket.c
ntrel at users.sourceforge.net
ntrel at xxxxx
Thu Sep 29 17:49:43 UTC 2011
Revision: 5971
http://geany.svn.sourceforge.net/geany/?rev=5971&view=rev
Author: ntrel
Date: 2011-09-29 17:49:42 +0000 (Thu, 29 Sep 2011)
Log Message:
-----------
Fix pointer signedness warning.
Modified Paths:
--------------
trunk/src/socket.c
Modified: trunk/src/socket.c
===================================================================
--- trunk/src/socket.c 2011-09-29 17:16:58 UTC (rev 5970)
+++ trunk/src/socket.c 2011-09-29 17:49:42 UTC (rev 5971)
@@ -588,7 +588,7 @@
gint fd, sock;
gchar buf[BUFFER_LENGTH];
struct sockaddr_in caddr;
- guint caddr_len = sizeof(caddr);
+ gint caddr_len = sizeof(caddr);
GtkWidget *window = data;
gboolean popup = FALSE;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list