Fix warnings.
This commit is contained in:
parent
d35aaf0256
commit
10c471ab13
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue