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);
-- 
2.1.0


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to