shithub: aubio

Download patch

ref: 3d1ca811984309dd36162eb92444b1e921b9b3da
parent: 2d88f41a60d975ba715b964454c500a6c2de2c83
author: Paul Brossier <piem@piem.org>
date: Wed Dec 4 16:38:26 EST 2013

src/io/source_sndfile.c: fix typo in comment

--- a/src/io/source_sndfile.c
+++ b/src/io/source_sndfile.c
@@ -73,7 +73,7 @@
   s->channels = 1;
   s->path = path;
 
-  // try opening the file, geting the info in sfinfo
+  // try opening the file, getting the info in sfinfo
   SF_INFO sfinfo;
   AUBIO_MEMSET(&sfinfo, 0, sizeof (sfinfo));
   s->handle = sf_open (s->path, SFM_READ, &sfinfo);
--