Changes in src/io/source_wavread.c [25ecb73:99c7aa2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_wavread.c
r25ecb73 r99c7aa2 196 196 } 197 197 198 if ( sr == 0 ) {199 AUBIO_ERR("source_wavread: Failed opening %s (samplerate can not be 0)\n", s->path);198 if ( (sint_t)sr <= 0 ) { 199 AUBIO_ERR("source_wavread: Failed opening %s (samplerate can not be <= 0)\n", s->path); 200 200 goto beach; 201 201 }
Note: See TracChangeset
for help on using the changeset viewer.