changeset 197:bcd337afa0f1

libgsmefr/lsp_lsf.c: perf opt
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 04 Jan 2023 04:02:19 +0000
parents 1cdbaeec7bcc
children d714168fb6dc
files libgsmefr/lsp_lsf.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libgsmefr/lsp_lsf.c	Wed Jan 04 03:58:26 2023 +0000
+++ b/libgsmefr/lsp_lsf.c	Wed Jan 04 04:02:19 2023 +0000
@@ -61,7 +61,7 @@
     {
         /* find value in table that is just greater than lsp[i] */
         test (); 
-        while (sub (table[ind], lsp[i]) < 0)
+        while (table[ind] < lsp[i])
         {
             ind--;
             test ();