diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2008-02-15 12:43:13 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2008-02-15 12:43:13 +0000 |
commit | e876da1b38221d8020d81b72926d2dee5c2bdc55 (patch) | |
tree | 5795d6dca0e668a43298f1099a61f19831f419f7 /src/descriptors.c | |
parent | 24738b0d1371876dc18cb21b516b3e43984e6dbc (diff) | |
download | LibXtract-e876da1b38221d8020d81b72926d2dee5c2bdc55.tar.gz LibXtract-e876da1b38221d8020d81b72926d2dee5c2bdc55.tar.bz2 LibXtract-e876da1b38221d8020d81b72926d2dee5c2bdc55.zip |
- Fixed bugs in xtract_flatness(), or at least added necessary
documentation and error checking to avoid problems
- Added xtract_is_denormal() helper function and XTRACT_DENORMAL_FOUND
return code
- Replaced all instances of log, sqrt, exp etc. with respective
floating point counterparts (logf etc.)
- Added check for architecture endianness to configure script
- Bug fix to PD example, now no longer crashes if no arguments are
given
- Minor documentation updates
Diffstat (limited to 'src/descriptors.c')
-rw-r--r-- | src/descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/descriptors.c b/src/descriptors.c index ac1fd1b..4460de8 100644 --- a/src/descriptors.c +++ b/src/descriptors.c @@ -530,7 +530,7 @@ xtract_function_descriptor_t *xtract_make_descriptors(void){ break; case XTRACT_ODD_EVEN_RATIO: strcpy(name, "odd_even_ratio"); - strcpy(p_name, "Odd/Even Harmonic Ratio"); + strcpy(p_name, "Odd/even Harmonic Ratio"); strcpy(desc, "Extract the odd-to-even harmonic ratio of a spectrum"); strcpy(p_desc, |