X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/71b70599a2cd81c13cc4326499a5d0c45358cd7d..b9bbb6c8bd8630fe4321045ce57174c4890bfa46:/server/speaker-oss.c diff --git a/server/speaker-oss.c b/server/speaker-oss.c index 69322ff..36ef4a8 100644 --- a/server/speaker-oss.c +++ b/server/speaker-oss.c @@ -1,6 +1,6 @@ /* * 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 @@ -73,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