From b0ceb53a7ddb94269f70b2769bbc72870e574111 Mon Sep 17 00:00:00 2001 From: Susant Sahani Date: Tue, 16 Dec 2014 08:48:34 +0530 Subject: fix compiler warning src/shared/utf8.c:268:13: warning: unused variable 'd' [-Wunused-variable] int d; --- src/shared/utf8.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/shared/utf8.c b/src/shared/utf8.c index 67f6285eec..03a0abe44b 100644 --- a/src/shared/utf8.c +++ b/src/shared/utf8.c @@ -265,7 +265,6 @@ char *ascii_is_valid(const char *str) { int utf8_encode_unichar(uint16_t c, char *p) { uint8_t *t = (uint8_t*) p; - int d; if (c < 0x80) { t[0] = (uint8_t) c; -- cgit v1.2.3-54-g00ecf