Skip to content

Commit ea8b26f

Browse files
committed
Fix comma that should have been a semicolon
Didn't cause any problem, but still good to fix. Reported by keithchugg on github.
1 parent 784d4ff commit ea8b26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celt/celt_lpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void celt_fir_c(
107107
{
108108
opus_val32 sum[4];
109109
sum[0] = SHL32(EXTEND32(x[i ]), SIG_SHIFT);
110-
sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT),
110+
sum[1] = SHL32(EXTEND32(x[i+1]), SIG_SHIFT);
111111
sum[2] = SHL32(EXTEND32(x[i+2]), SIG_SHIFT);
112112
sum[3] = SHL32(EXTEND32(x[i+3]), SIG_SHIFT);
113113
xcorr_kernel(rnum, x+i-ord, sum, ord, arch);

0 commit comments

Comments
 (0)