aboutsummaryrefslogtreecommitdiffstats
path: root/bitlbee.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2008-01-17 22:06:55 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2008-01-17 22:06:55 +0000
commit52744f8f65a278a59a8903d5c594e057d63c7006 (patch)
tree9cd0ff1f2b49146b3d42c70c272ff88d215436b8 /bitlbee.c
parent13857c648210a16448619c65e33f9918bfe27cbe (diff)
Fixing some Solaris compiler warnings (u_int->uint, adding some typecasts
for pid_t variables).
Diffstat (limited to 'bitlbee.c')
-rw-r--r--bitlbee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitlbee.c b/bitlbee.c
index 3f488b46..c4b5abb3 100644
--- a/bitlbee.c
+++ b/bitlbee.c
@@ -278,7 +278,7 @@ static gboolean bitlbee_io_new_client( gpointer data, gint fd, b_input_condition
child->ipc_inpa = b_input_add( child->ipc_fd, GAIM_INPUT_READ, ipc_master_read, child );
child_list = g_slist_append( child_list, child );
- log_message( LOGLVL_INFO, "Creating new subprocess with pid %d.", client_pid );
+ log_message( LOGLVL_INFO, "Creating new subprocess with pid %d.", (int) client_pid );
/* Close some things we don't need in the parent process. */
close( new_socket );