From cf6aed73bc2a519614b001a8ef33426f124b51f1 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Sat, 22 Nov 2014 20:48:40 -0600 Subject: [PATCH] wmcliphist: Fix unused but set variable compiler warning. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In particular, utils.c: In function ‘from_utf8’: utils.c:13:7: warning: variable ‘error_code’ set but not used [-Wunused-but-set-variable] gint error_code; ^ --- wmcliphist/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmcliphist/utils.c b/wmcliphist/utils.c index c769f3c..7a88962 100644 --- a/wmcliphist/utils.c +++ b/wmcliphist/utils.c @@ -10,11 +10,11 @@ from_utf8(gchar *string) { GError *error; gchar *converted; /* gchar *error_msg; */ - gint error_code; + /* gint error_code; */ converted = g_locale_from_utf8(string, -1, &bytes_read, &bytes_written, &error); - error_code = (error == NULL) ? 0 : error->code; + /* error_code = (error == NULL) ? 0 : error->code; */ /* * fprintf(stderr, "from_utf8: %d b read, %d b written, error: %d\n", * bytes_read, bytes_written, error_code);