diff src/remote.c @ 1444:a005287bffc7

gint -> gboolean.
author zas_
date Sun, 15 Mar 2009 15:01:07 +0000
parents a3d3208b0c50
children 2b95dbb20a87
line wrap: on
line diff
--- a/src/remote.c	Sun Mar 15 13:33:56 2009 +0000
+++ b/src/remote.c	Sun Mar 15 15:01:07 2009 +0000
@@ -182,7 +182,7 @@
 	return TRUE;
 }
 
-static gint remote_server_exists(const gchar *path)
+static gboolean remote_server_exists(const gchar *path)
 {
 	RemoteConnection *rc;
 
@@ -291,7 +291,7 @@
 	sigpipe_occured = TRUE;
 }
 
-static gint remote_client_send(RemoteConnection *rc, const gchar *text)
+static gboolean remote_client_send(RemoteConnection *rc, const gchar *text)
 {
 	struct sigaction new_action, old_action;
 	gboolean ret = FALSE;
@@ -457,7 +457,7 @@
 		}
 }
 
-static gint gr_quit_idle_cb(gpointer data)
+static gboolean gr_quit_idle_cb(gpointer data)
 {
 	exit_program();
 
@@ -563,8 +563,8 @@
 	gchar *opt_s;
 	gchar *opt_l;
 	void (*func)(const gchar *text, gpointer data);
-	gint needs_extra;
-	gint prefer_command_line;
+	gboolean needs_extra;
+	gboolean prefer_command_line;
 	gchar *description;
 };