Skip to content

Commit 601062c

Browse files
committed
cleanup
1 parent 160190f commit 601062c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pcm_timer_driver.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ int pcm_timer_driver_estimate(struct pcm_timer_driver *driver, int samples) {
3535
int denom = driver->remainder;
3636
for(int i = 1; i <= samples; i++) {
3737
denom += driver->denominator;
38-
if(denom >= driver->numerator) {
38+
if(denom >= driver->numerator)
3939
return i;
40-
}
4140
}
4241

4342
return samples;

0 commit comments

Comments
 (0)