# HG changeset patch # User Mike Becker # Date 1562332063 -7200 # Node ID ae368664625fe81953dca114304a038786050c82 # Parent 0878f83348a0e578f707eece743577d8e186ce5c fixes doxygen doc diff -r 0878f83348a0 -r ae368664625f src/ucx/array.h --- a/src/ucx/array.h Fri Jul 05 15:02:04 2019 +0200 +++ b/src/ucx/array.h Fri Jul 05 15:07:43 2019 +0200 @@ -213,7 +213,7 @@ * @return the requested element * @see ucx_array_at() */ -#define ucx_array_at_typed(type, arr, i) (((type*)((arr).data))[i]) +#define ucx_array_at_typed(type, array, index) (((type*)((array).data))[index]) /** * Shorthand for ucx_array_at_typed(). @@ -294,7 +294,7 @@ * * This function uses additional memory for exactly one element. * - * @param the array to sort + * @param array the array to sort * @param cmpfnc the function that shall be used to compare the element data * @param data additional data for the cmp_func() */