this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Calling exit from library code is icky. Closes issue #49

+2 -2
+2 -2
tools/kiss_fftr.c
··· 68 68 69 69 if ( st->substate->inverse) { 70 70 KISS_FFT_ERROR("kiss fft usage error: improper alloc"); 71 - exit(1); 71 + return;/* The caller did not call the correct function */ 72 72 } 73 73 74 74 ncfft = st->substate->nfft; ··· 123 123 124 124 if (st->substate->inverse == 0) { 125 125 KISS_FFT_ERROR("kiss fft usage error: improper alloc"); 126 - exit (1); 126 + return;/* The caller did not call the correct function */ 127 127 } 128 128 129 129 ncfft = st->substate->nfft;