From ab4d62e16890c364b9a64059c037c16b2ce67f65 Mon Sep 17 00:00:00 2001 From: JinWang An Date: Wed, 16 Aug 2023 14:38:26 +0900 Subject: [PATCH] Remove variable to fix wrong format string Change-Id: Idd46672c1d5cf20469cd2ef33e9172fa8de3cda2 Signed-off-by: JinWang An --- i18ninfo/i18ninfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.7.4