From c4669fda7890bc741ef934ebc360e366eba94866 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sun, 9 Jun 2019 11:50:36 +0430 Subject: [PATCH] [algs] minor --- src/hb-algs.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hb-algs.hh b/src/hb-algs.hh index 07abffbcf..9a9d3f430 100644 --- a/src/hb-algs.hh +++ b/src/hb-algs.hh @@ -667,9 +667,9 @@ Parameters: compar is the comparison function arg (optional) is a pointer to be passed to the comparison function -void hb_sort(void *base, size_t nel, size_t width, - int (*compar)(const void *_a, const void *_b, [void *_arg]), - [void *arg]); +void hb_qsort(void *base, size_t nel, size_t width, + int (*compar)(const void *_a, const void *_b, [void *_arg]), + [void *arg]); */ #define SORT_R_SWAP(a,b,tmp) ((tmp) = (a), (a) = (b), (b) = (tmp))