shithub: sox

Download patch

ref: 5e2dc5b9bc58b73b50ee789e7403119f31602b97
parent: 490903f17ab0a3a6bd378f1db4344453ba178833
parent: e103e2d61e1d00954587dea310c95bd411cc1b06
author: Chris Bagwell <chris@cnpbagwell.com>
date: Sun Jan 22 16:40:33 EST 2012

Merge branch 'master' of ssh://sox.git.sourceforge.net/gitroot/sox/sox

--- a/src/effects.c
+++ b/src/effects.c
@@ -33,12 +33,11 @@
 }
 
 /* Pass through samples verbatim */
-int lsx_flow_copy(sox_effect_t * effp, const sox_sample_t * ibuf,
+int lsx_flow_copy(sox_effect_t * effp UNUSED, const sox_sample_t * ibuf,
     sox_sample_t * obuf, size_t * isamp, size_t * osamp)
 {
   *isamp = *osamp = min(*isamp, *osamp);
   memcpy(obuf, ibuf, *isamp * sizeof(*obuf));
-  (void)effp;
   return SOX_SUCCESS;
 }