From: Paul Brossier Date: Thu, 5 Dec 2013 02:38:26 +0000 (-0500) Subject: src/io/source_sndfile.c: fix typo in comment X-Git-Tag: 0.4.0-beta1~52^2~24 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=3d1ca811984309dd36162eb92444b1e921b9b3da;p=aubio.git src/io/source_sndfile.c: fix typo in comment --- diff --git a/src/io/source_sndfile.c b/src/io/source_sndfile.c index 48cc5a83..7e4fdc8c 100644 --- a/src/io/source_sndfile.c +++ b/src/io/source_sndfile.c @@ -73,7 +73,7 @@ aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * path, uint_t samplera 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);