Mercurial > pidgin.yaz
changeset 1057:d50d3abb9eb7
[gaim-migrate @ 1067]
attempting to pass -Wall (at least for app)
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 03 Nov 2000 10:46:58 +0000 |
parents | bde34730789c |
children | 4927ce25d8cc |
files | src/buddy.c src/dialogs.c src/gaimrc.c src/gtkhtml.c src/plugins.c src/proxy.c src/prpl.c src/server.c src/sound.c |
diffstat | 9 files changed, 7 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buddy.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/buddy.c Fri Nov 03 10:46:58 2000 +0000 @@ -822,7 +822,6 @@ GList *c; struct gaim_plugin *p; void (*gaim_plugin_remove)(); - char *error; /* first we tell those who have requested it we're quitting */ plugin_event(event_quit, 0, 0, 0, 0);
--- a/src/dialogs.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/dialogs.c Fri Nov 03 10:46:58 2000 +0000 @@ -46,7 +46,6 @@ #include "pixmaps/ok.xpm" #include "pixmaps/add.xpm" #include "pixmaps/warn.xpm" -#include "pixmaps/gnome_remove.xpm" #include "pixmaps/angel.xpm" #include "pixmaps/bigsmile.xpm" @@ -3244,7 +3243,7 @@ GtkWidget *vbox; GtkWidget *bbox; GtkWidget *cancel; - GtkWidget *add; + static GtkWidget *add = NULL; GtkWidget *label; GtkWidget *topbox; static int a, c;
--- a/src/gaimrc.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/gaimrc.c Fri Nov 03 10:46:58 2000 +0000 @@ -707,7 +707,7 @@ p = parse_line(buf); - sscanf(p->option, "sound%c", &i); + sscanf(p->option, "sound%c", (char *)&i); i -= 'A'; if (p->value[0][0])
--- a/src/gtkhtml.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/gtkhtml.c Fri Nov 03 10:46:58 2000 +0000 @@ -1839,7 +1839,6 @@ GtkWidget *widget = GTK_WIDGET(html); GdkRectangle area; GList *hbits; - GtkHtmlBit *hbit; if (html->frozen > 0) return; @@ -4393,7 +4392,7 @@ static int get_line_height(GtkHtml *html, GtkHtmlBit *start) { - int height, max_height = 0; + int height = 1, max_height = 0; GList *hbits = html->html_bits; GtkHtmlBit *hbit = start; /* default this in case hbits is NULL */
--- a/src/plugins.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/plugins.c Fri Nov 03 10:46:58 2000 +0000 @@ -475,7 +475,6 @@ gchar *temp; guint text_len; void (*gaim_plugin_config)(); - char *error; if (confighandle != 0) gtk_signal_disconnect(GTK_OBJECT(config), confighandle);
--- a/src/proxy.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/proxy.c Fri Nov 03 10:46:58 2000 +0000 @@ -33,6 +33,7 @@ #include <sys/socket.h> #include <netdb.h> #include <netinet/in.h> +#include <unistd.h> #include <gtk/gtk.h> #include "gaim.h" #include "proxy.h"
--- a/src/prpl.c Fri Nov 03 10:31:56 2000 +0000 +++ b/src/prpl.c Fri Nov 03 10:46:58 2000 +0000 @@ -50,9 +50,8 @@ { struct prpl *p = g_new0(struct prpl, 1); struct prpl *old; - GSList *n = protocols; pi(p); - if (old = find_prpl(p->protocol)) + if ((old = find_prpl(p->protocol)) == NULL) unload_protocol(old); protocols = g_slist_insert_sorted(protocols, p, (GCompareFunc)proto_compare); }