chiark / gitweb /
Only report failure to find OSS devices once, not every time we think
[disorder] / server / speaker-oss.c
index 9682cdee6d7c3ccb458cac4befa38e120ef1e63d..36ef4a85c250b9b91b5acdc41cd663575004b15d 100644 (file)
@@ -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