chiark / gitweb /
lib/uaudio-pulseaudio.c: Rewrite using the asynchronous API.
[disorder] / lib / trackname.c
index fa40c3b840a567ec722d49d9edd4b4827e55344c..644d06926ba30aff440371767874755ff8fc947b 100644 (file)
@@ -19,8 +19,6 @@
  * @brief Track name calculation
  */
 #include "common.h"
-
-#include <pcre.h>
 #include <fnmatch.h>
 
 #include "trackname.h"
@@ -51,7 +49,11 @@ const char *find_track_root(const char *track) {
   const struct collection *c = find_track_collection(track);
   if(c)
     return c->root;
-  error(0, "found track in no collection '%s'", track);
+  /* Suppress this message for scratches */
+  for(int n = 0; n < config->scratch.n; ++n)
+    if(!strcmp(track, config->scratch.s[n]))
+      return 0;
+  disorder_error(0, "found track in no collection '%s'", track);
   return 0;
 }