From 182746b95c84d5e742b82d662f4c3321250b4e60 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 9 Sep 2008 10:01:29 +0200 Subject: timer: constant pointers The audio_format argument to timer_new() should be constant, because it is not modified. The same is true for ShoutData.audioFormat. --- src/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/timer.c') diff --git a/src/timer.c b/src/timer.c index 0d8f07f5..f917cda7 100644 --- a/src/timer.c +++ b/src/timer.c @@ -30,7 +30,7 @@ static uint64_t now(void) return ((uint64_t)tv.tv_sec * 1000000) + tv.tv_usec; } -Timer *timer_new(struct audio_format *af) +Timer *timer_new(const struct audio_format *af) { Timer *timer; -- cgit v1.2.3