diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-01-17 22:06:55 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-01-17 22:06:55 +0000 |
commit | 52744f8f65a278a59a8903d5c594e057d63c7006 (patch) | |
tree | 9cd0ff1f2b49146b3d42c70c272ff88d215436b8 /bitlbee.c | |
parent | 13857c648210a16448619c65e33f9918bfe27cbe (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ); |