X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/c62ae9477861a63b7958b58384bfbffb11c37347..5ee84006635471924157f07fe1ffe75cb253cae5:/server/speaker-oss.c diff --git a/server/speaker-oss.c b/server/speaker-oss.c index 9f409d5..36ef4a8 100644 --- a/server/speaker-oss.c +++ b/server/speaker-oss.c @@ -1,6 +1,7 @@ /* * This file is part of DisOrder - * Copyright (C) 2007 Richard Kettlewell + * Copyright (C) 2007, 2008 Richard Kettlewell + * Portions copyright (C) 2007 Ross Younger * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -72,7 +73,12 @@ static void oss_activate(void) { else if(access("/dev/audio", W_OK) == 0) device = "/dev/audio"; else { - error(0, "cannot determine default OSS device"); + static int reported; + + if(!reported) { + error(0, "cannot determine default OSS device"); + reported = 1; + } goto failed; } } else @@ -142,7 +148,7 @@ static size_t oss_play(size_t frames) { static int oss_slot; /** @brief Fill in poll fd array for OSS */ -static void oss_beforepoll(void) { +static void oss_beforepoll(int attribute((unused)) *timeoutp) { oss_slot = addfd(ossfd, POLLOUT|POLLERR); }