diff --git a/rx.c b/rx.c index c5c3c10..62c205e 100644 --- a/rx.c +++ b/rx.c @@ -32,7 +32,7 @@ static unsigned int verbose = DEFAULT_VERBOSE; -static void timestamp_jump(RtpSession *session, ...) +static void timestamp_jump(RtpSession *session, void *a, void *b, void *c) { if (verbose > 1) fputc('|', stderr); diff --git a/tx.c b/tx.c index 79151fa..42bb3bb 100644 --- a/tx.c +++ b/tx.c @@ -240,7 +240,7 @@ int main(int argc, char *argv[]) ortp_init(); ortp_scheduler_init(); - ortp_set_log_level_mask(ORTP_WARNING|ORTP_ERROR); + ortp_set_log_level_mask(NULL, ORTP_WARNING|ORTP_ERROR); session = create_rtp_send(addr, port); assert(session != NULL);