Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 151382 | Differences between
and this patch

Collapse All | Expand All

(-)sonic-rainbow/src/cdplayer.c (-1 / +1 lines)
Lines 474-480 Link Here
474
{
474
{
475
  for(i=1;i<matches;i++)
475
  for(i=1;i<matches;i++)
476
  {
476
  {
477
   if(id==disc->discid)break;
477
   if(id==cddb_disc_calc_discid(disc))break;
478
   back=cddb_query_next(conn,disc);
478
   back=cddb_query_next(conn,disc);
479
   }
479
   }
480
480
(-)sonic-rainbow/src/cdripper.c (-1 / +1 lines)
Lines 1168-1174 Link Here
1168
{
1168
{
1169
for(i=1;i<matches;i++)
1169
for(i=1;i<matches;i++)
1170
{
1170
{
1171
if(id==disc->discid)break;
1171
if(id==cddb_disc_calc_discid(disc))break;
1172
back=cddb_query_next(conn,disc);
1172
back=cddb_query_next(conn,disc);
1173
}
1173
}
1174
1174
(-)sonic-rainbow/src/oggplayer.c (-2 / +2 lines)
Lines 231-237 Link Here
231
dowhat=-1;
231
dowhat=-1;
232
232
233
233
234
db=data->data;
234
db=(char *)data->data;
235
235
236
236
237
while(1)
237
while(1)
Lines 3046-3052 Link Here
3046
	}
3046
	}
3047
	}
3047
	}
3048
3048
3049
(long)x=ftell(fptr);
3049
x=(float)ftell(fptr);
3050
x=x/length;
3050
x=x/length;
3051
x=x*100;
3051
x=x*100;
3052
3052

Return to bug 151382