X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/e7eb3a2744aa45179daea235800753d3d1955338..05577e6c12009f025c1a0e8a4aec956e6fa914f6:/cgi/lookup.c diff --git a/cgi/lookup.c b/cgi/lookup.c index 7b9a372..2b6d594 100644 --- a/cgi/lookup.c +++ b/cgi/lookup.c @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -/** @file server/lookup.c +/** @file cgi/lookup.c * @brief Server lookups * * To improve performance many server lookups are cached. @@ -33,8 +33,8 @@ struct queue_entry *dcgi_queue; struct queue_entry *dcgi_playing; struct queue_entry *dcgi_recent; -int dcgi_volume_left; -int dcgi_volume_right; +long dcgi_volume_left; +long dcgi_volume_right; char **dcgi_new; int dcgi_nnew; @@ -68,7 +68,7 @@ void dcgi_lookup(unsigned want) { queuemap_add(dcgi_playing); } if(need & DCGI_NEW) - disorder_new_tracks(dcgi_client, &dcgi_new, &dcgi_nnew, 0); + disorder_new_tracks(dcgi_client, 0, &dcgi_new, &dcgi_nnew); if(need & DCGI_RECENT) { /* we need to reverse the order of the list */ disorder_recent(dcgi_client, &r);