blob: 1cd91475dbd68fea8836dfdcdc78432ce42e5023 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From b9cd992052550d4b2bba954099e221677a6652e7 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:28:41 +0000
Brad Bishop19323692019-04-05 15:28:33 -04004Subject: [PATCH 14/30] Add unused attribute
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005
6Helps in avoiding gcc warning when header is is included in
7a source file which does not use both functions
8
9 * iconv/gconv_charset.h (strip):
10 Add unused attribute.
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13
14Upstream-Status: Pending
15---
16 iconv/gconv_charset.h | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h
Brad Bishop19323692019-04-05 15:28:33 -040020index 91e0ad3141..2e9549fe49 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021--- a/iconv/gconv_charset.h
22+++ b/iconv/gconv_charset.h
23@@ -21,7 +21,7 @@
24 #include <locale.h>
25
26
27-static void
28+static void __attribute__ ((unused))
29 strip (char *wp, const char *s)
30 {
31 int slash_count = 0;
Brad Bishop19323692019-04-05 15:28:33 -040032--
332.20.1
34