From: JinWang An Date: Wed, 16 Aug 2023 05:38:26 +0000 (+0900) Subject: Remove variable to fix wrong format string X-Git-Tag: accepted/tizen/8.0/unified/20231005.092623^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F65%2F297265%2F1;p=platform%2Fcore%2Fapi%2Fbase-utils.git Remove variable to fix wrong format string Change-Id: Idd46672c1d5cf20469cd2ef33e9172fa8de3cda2 Signed-off-by: JinWang An --- diff --git a/i18ninfo/i18ninfo.cpp b/i18ninfo/i18ninfo.cpp index e40dd76..f21c8af 100644 --- a/i18ninfo/i18ninfo.cpp +++ b/i18ninfo/i18ninfo.cpp @@ -1216,7 +1216,7 @@ i18n_uchar *_convert_unicode_numeric_values(const i18n_uchar *input, int32_t len int max_value_length = 0; double *values = (double *) malloc(length * sizeof(double)); if (NULL == values) { - fprintf(stderr, "\nError: Out of memory.\n", values); + fprintf(stderr, "\nError: Out of memory.\n"); return NULL; }