Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Thu, 22 May 2014 00:20:40 UTC Commit: c4133e8e456a99153ee4b546b043213aafa71057 https://github.com/geany/geany-plugins/commit/c4133e8e456a99153ee4b546b04321...
Log Message: ----------- geniuspaste: Fix sign comparison warnings
Modified Paths: -------------- geniuspaste/src/geniuspaste.c
Modified: geniuspaste/src/geniuspaste.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -201,7 +201,7 @@ static void paste(GeanyDocument * doc, const gchar * website) };
gint occ_position; - gint i; + guint i; guint status; gsize f_length;
@@ -440,7 +440,7 @@ static void on_configure_response(GtkDialog * dialog, gint response, gpointer *
GtkWidget *plugin_configure(GtkDialog * dialog) { - gint i; + guint i; GtkWidget *label, *vbox, *author_label;
vbox = gtk_vbox_new(FALSE, 6);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).