summaryrefslogtreecommitdiffstats
path: root/stream/stream_cddb.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_cddb.c')
-rw-r--r--stream/stream_cddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_cddb.c b/stream/stream_cddb.c
index 775652c322..b2c455d5d9 100644
--- a/stream/stream_cddb.c
+++ b/stream/stream_cddb.c
@@ -259,7 +259,7 @@ cddb_discid(int tot_trks) {
}
t = ((cdtoc[tot_trks].min * 60) + cdtoc[tot_trks].sec) -
((cdtoc[0].min * 60) + cdtoc[0].sec);
- return ((n % 0xff) << 24 | t << 8 | tot_trks);
+ return (n % 0xff) << 24 | t << 8 | tot_trks;
}