X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/e84fb5f0c934ff2b8054a582c2ce09bcb05cba40..ba9d856bc65beb636a61542d5f2e1b4fc240db32:/server/speaker-oss.c?ds=sidebyside diff --git a/server/speaker-oss.c b/server/speaker-oss.c index 9682cde..95dcfe3 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 @@ -20,15 +21,12 @@ /** @file server/speaker-oss.c * @brief Support for @ref BACKEND_OSS */ -#include +#include "common.h" #if HAVE_SYS_SOUNDCARD_H -#include "types.h" - #include #include -#include #include #include #include @@ -72,7 +70,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