Fixed missing brackets from revison 421

This commit is contained in:
Thomas Schmitt 2006-11-19 16:40:53 +00:00
parent 46906c7f65
commit f3b994f845
2 changed files with 3 additions and 2 deletions

View File

@ -4630,10 +4630,11 @@ fifo_full_at_end:;
#ifdef Cdrskin_libburn_has_buffer_min_filL
/* cdrskin recorded its own coarse min_buffer_fill.
libburn's is finer - if enough bytes were processed so it is available.*/
if(p.buffer_min_fill<=p.buffer_capacity && p.buffer_capacity>0)
if(p.buffer_min_fill<=p.buffer_capacity && p.buffer_capacity>0) {
num= 100.0 * ((double) p.buffer_min_fill)/(double) p.buffer_capacity;
if(num<min_buffer_fill)
min_buffer_fill= num;
}
#endif /* Cdrskin_libburn_has_buffer_min_filL */
if(min_buffer_fill>100)

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2006.11.19.162900"
#define Cdrskin_timestamP "2006.11.19.163646"