diff options
-rw-r--r-- | src/libserver/symbols_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libserver/symbols_cache.c b/src/libserver/symbols_cache.c index f8944d86b..f9cd358a0 100644 --- a/src/libserver/symbols_cache.c +++ b/src/libserver/symbols_cache.c @@ -77,8 +77,8 @@ cache_logic_cmp (const void *p1, const void *p2) } else { /* Strict sorting */ - w1 = fabs (i1->priority); - w2 = fabs (i2->priority); + w1 = abs (i1->priority); + w2 = abs (i2->priority); } return (gint)w2 - w1; |