ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/src away_window.c,1.2,1.3 browser.c,1.1.1.1,1


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/src away_window.c,1.2,1.3 browser.c,1.1.1.1,1.2 chat_room.c,1.2,1.3 message_parse.c,1.3,1.4 status.c,1.6,1.7
Date: Tue, 31 Dec 2002 11:46:29 -0500

Update of /cvsroot/ayttm/ayttm/src
In directory subversions:/tmp/cvs-serv6728/src

Modified Files:
        away_window.c browser.c chat_room.c message_parse.c status.c 
Log Message:
warning fixes patch, thanks to Andy <address@hidden>


Index: away_window.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/away_window.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- away_window.c       27 Dec 2002 16:46:52 -0000      1.2
+++ away_window.c       31 Dec 2002 16:46:27 -0000      1.3
@@ -35,7 +35,9 @@
 #include "pixmaps/ok.xpm"
 #include "pixmaps/cancel.xpm"
 
+#ifndef MIN
 #define MIN(x, y)      ((x)<(y)?(x):(y))
+#endif
 
 static GtkWidget *awaybox = NULL;
 GtkWidget * away_window;

Index: browser.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/browser.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- browser.c   23 Dec 2002 22:05:30 -0000      1.1.1.1
+++ browser.c   31 Dec 2002 16:46:27 -0000      1.2
@@ -638,4 +638,4 @@
        open_url_nw(w,url);
 }
 
-#endif _WIN32
+#endif // _WIN32

Index: chat_room.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/chat_room.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- chat_room.c 27 Dec 2002 16:46:52 -0000      1.2
+++ chat_room.c 31 Dec 2002 16:46:27 -0000      1.3
@@ -13,6 +13,7 @@
 #include "pixmaps/tb_volume.xpm"
 #include "sound.h"
 #include "dialog.h"
+#include "smileys.h"
 
 GList * chat_rooms = NULL;
 

Index: message_parse.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/message_parse.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- message_parse.c     26 Dec 2002 18:33:00 -0000      1.3
+++ message_parse.c     31 Dec 2002 16:46:27 -0000      1.4
@@ -421,7 +421,7 @@
                                free(buff);
                                return;
                        }
-                       if (bind(s,&sa,sizeof(struct sockaddr_in)) < 0) {
+                       if (bind(s,(struct sockaddr *)&sa,sizeof(struct 
sockaddr_in)) < 0) {
                                eb_debug(DBG_CORE, "bind failed: %s\n", 
strerror(errno));
                                close(s);
                                free(buff);

Index: status.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/status.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- status.c    30 Dec 2002 19:12:12 -0000      1.6
+++ status.c    31 Dec 2002 16:46:27 -0000      1.7
@@ -1743,7 +1743,7 @@
 {
        gchar *retval;
 
-       retval = gettext(path);
+       retval = (gchar *)gettext(path);
 
        return retval;
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]