diff options
Diffstat (limited to 'polyp/mainloop.c')
-rw-r--r-- | polyp/mainloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polyp/mainloop.c b/polyp/mainloop.c index f6bb4145..a0d27827 100644 --- a/polyp/mainloop.c +++ b/polyp/mainloop.c @@ -457,7 +457,7 @@ static int calc_next_timeout(struct pa_mainloop *m) { /* Let's save a system call */ if (!got_time) { - gettimeofday(&now, NULL); + pa_gettimeofday(&now); got_time = 1; } @@ -498,7 +498,7 @@ static int dispatch_timeout(struct pa_mainloop *m) { /* Let's save a system call */ if (!got_time) { - gettimeofday(&now, NULL); + pa_gettimeofday(&now); got_time = 1; } |