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))