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.orig/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.orig/src/cdripper.c (-1 / +1 lines)
Lines 976-982 Link Here
976
{
976
{
977
for(i=1;i<matches;i++)
977
for(i=1;i<matches;i++)
978
{
978
{
979
if(id==disc->discid)break;
979
if(id==cddb_disc_calc_discid(disc))break;
980
back=cddb_query_next(conn,disc);
980
back=cddb_query_next(conn,disc);
981
}
981
}
982
982
(-)sonic-rainbow.orig/src/oggplayer.c (-2 / +2 lines)
Lines 264-270 Link Here
264
dowhat=-1;
264
dowhat=-1;
265
265
266
266
267
db=data->data;
267
db=(char *)data->data;
268
268
269
269
270
while(1)
270
while(1)
Lines 3324-3330 Link Here
3324
	}
3324
	}
3325
	}
3325
	}
3326
3326
3327
(long)x=ftell(fptr);
3327
x=(float)ftell(fptr);
3328
x=x/length;
3328
x=x/length;
3329
x=x*100;
3329
x=x*100;
3330
3330

Return to bug 151382