From: Hyunjee Kim Date: Fri, 15 Sep 2017 07:38:09 +0000 (+0900) Subject: Fix some bugs X-Git-Tag: accepted/tizen/unified/20171213.040809~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9545f409035fe7b31ad267a238c635aaab87b6da;p=platform%2Fcore%2Fapi%2Fbase-utils.git Fix some bugs - chage variable's name from dest to target Change-Id: I057d071214125c2f5ddb2461528025ba574e2e1c Signed-off-by: Hyunjee Kim --- diff --git a/src/include/utils_i18n_ucollator.h b/src/include/utils_i18n_ucollator.h index 3128c9e..67b4ad9 100644 --- a/src/include/utils_i18n_ucollator.h +++ b/src/include/utils_i18n_ucollator.h @@ -233,7 +233,7 @@ int i18n_ucollator_destroy(i18n_ucollator_h collator); * @param[in] collator The #i18n_ucollator_h containing the comparison rules * @param[in] src The source string * @param[in] src_len The length of the source, otherwise @c -1 if null-terminated - * @param[in] dest The target string + * @param[in] target The target string * @param[in] target_len The length of the target, otherwise @c -1 if null-terminated * @param[out] result The result of comparing the strings \n * One of #I18N_UCOLLATOR_EQUAL, #I18N_UCOLLATOR_GREATER, or #I18N_UCOLLATOR_LESS @@ -245,7 +245,7 @@ int i18n_ucollator_destroy(i18n_ucollator_h collator); int i18n_ucollator_str_collator(const i18n_ucollator_h collator, const i18n_uchar *src, int32_t src_len, - const i18n_uchar *dest, + const i18n_uchar *target, int32_t target_len, i18n_ucollator_result_e *result);