shithub: sox

Download patch

ref: 93556f5296bd6b18bff328a8240673dd521485af
parent: fcbcd918881f33941e9aabacf75e3fddf9f695fb
author: Rob Sykes <robs@users.sourceforge.net>
date: Wed Feb 27 16:46:56 EST 2013

fix size_t/uint64_t mismatch

--- a/src/bend.c
+++ b/src/bend.c
@@ -41,9 +41,9 @@
   unsigned nbends;       /* Number of bends requested */
   struct {
     char *str;           /* Command-line argument to parse for this bend */
-    size_t start;        /* Start bending when in_pos equals this */
+    uint64_t start;      /* Start bending when in_pos equals this */
     double cents;
-    uint64_t duration;     /* Number of samples to bend */
+    uint64_t duration;   /* Number of samples to bend */
   } *bends;
 
   unsigned frame_rate;