Fix warnings.

This commit is contained in:
Uwe Hermann 2011-01-16 14:18:26 +01:00
parent d35aaf0256
commit 10c471ab13
2 changed files with 3 additions and 2 deletions

View File

@ -253,7 +253,7 @@ static void thread_func(void *data)
mydata->samples_counter += nb_to_send;
g_io_channel_write_chars(channels[1], (gchar *)&buf,
nb_to_send, &bytes_written, NULL);
nb_to_send, (gsize *)&bytes_written, NULL);
g_usleep(mydata->loop_sleep);
}
@ -267,6 +267,7 @@ static int receive_data(int fd, int revents, void *user_data)
uint64_t z;
/* Avoid compiler warnings. */
fd = fd;
revents = revents;
g_io_channel_read_chars(channels[0], (gchar *)&c, BUFSIZE, &z, NULL);

View File

@ -181,7 +181,7 @@ static int data(struct output *o, char *data_in, uint64_t length_in,
char **data_out, uint64_t *length_out)
{
struct context *ctx;
unsigned int max_linelen, outsize, p, curbit, i;
unsigned int max_linelen, outsize, i;
uint64_t sample;
static uint64_t samplecount = 0;
char *outbuf, *c;