SHA256
1
0
forked from pool/csound
csound/csound-gcc-warning-fix.patch

17 lines
1.0 KiB
Diff
Raw Normal View History

Index: Opcodes/gab/sliderTable.c
===================================================================
--- Opcodes/gab/sliderTable.c.orig
+++ Opcodes/gab/sliderTable.c
@@ -368,9 +368,9 @@ static int sliderTable64(CSOUND *csound,
break; \
} \
*outTable++ = \
- *yt1++ = *c1++ * value + *c2++ * *yt1; /* filters the output */ \
+ *yt1 = *c1++ * value + *c2++ * *yt1; /* filters the output */ \
\
- min++; max++; j++; ftp++; \
+ yt1++; min++; max++; j++; ftp++; \
} \
} \
return OK;