summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc/glibc/0016-Add-unused-attribute.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glibc/glibc/0016-Add-unused-attribute.patch')
-rw-r--r--meta/recipes-core/glibc/glibc/0016-Add-unused-attribute.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-core/glibc/glibc/0016-Add-unused-attribute.patch b/meta/recipes-core/glibc/glibc/0016-Add-unused-attribute.patch
deleted file mode 100644
index 574e7c3503..0000000000
--- a/meta/recipes-core/glibc/glibc/0016-Add-unused-attribute.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From c323125744020a29f79e50dc4d024b55c482eafc Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:28:41 +0000
4Subject: [PATCH] Add unused attribute
5
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
20index 348acc089b..fa92465d89 100644
21--- 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;