summaryrefslogtreecommitdiff
path: root/src/input/input_cdda.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/input_cdda.c')
-rw-r--r--src/input/input_cdda.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c
index 6f6f23ef2..5cbcc2cb0 100644
--- a/src/input/input_cdda.c
+++ b/src/input/input_cdda.c
@@ -1357,7 +1357,7 @@ static int _cdda_cddb_send_command(cdda_input_plugin_t *this, char *cmd) {
* Handle return code od a command result.
*/
static int _cdda_cddb_handle_code(char *buf) {
- int rcode, fdig, sdig, tdig, err;
+ int rcode, fdig, sdig, /*tdig,*/ err;
err = -999;
@@ -1365,7 +1365,7 @@ static int _cdda_cddb_handle_code(char *buf) {
fdig = rcode / 100;
sdig = (rcode - (fdig * 100)) / 10;
- tdig = (rcode - (fdig * 100) - (sdig * 10));
+ /*tdig = (rcode - (fdig * 100) - (sdig * 10));*/
/*
printf(" %d--\n", fdig);