chiark
/
gitweb
/
~mdw
/
disorder
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
record whether tracks are connected to speaker in a sane and working way
[disorder]
/
server
/
server-queue.c
diff --git
a/server/server-queue.c
b/server/server-queue.c
index 2b0e89e8f51fbae93c3f219094207de2f4a5a6a5..71262886ec1b1d123605961616eb523ac4cb2a57 100644
(file)
--- a/
server/server-queue.c
+++ b/
server/server-queue.c
@@
-41,11
+41,11
@@
#include "disorder.h"
/* the head of the queue is played next, so normally we add to the tail */
#include "disorder.h"
/* the head of the queue is played next, so normally we add to the tail */
-struct queue_entry qhead = { &qhead, &qhead, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+struct queue_entry qhead = { &qhead, &qhead, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
, 0
};
/* the head of the recent list is the oldest thing, the tail the most recently
* played */
/* the head of the recent list is the oldest thing, the tail the most recently
* played */
-struct queue_entry phead = { &phead, &phead, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+struct queue_entry phead = { &phead, &phead, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
, 0
};
static long pcount;
static long pcount;