summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc/glibc/0001-Add-unused-attribute.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glibc/glibc/0001-Add-unused-attribute.patch')
-rw-r--r--meta/recipes-core/glibc/glibc/0001-Add-unused-attribute.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc/0001-Add-unused-attribute.patch b/meta/recipes-core/glibc/glibc/0001-Add-unused-attribute.patch
new file mode 100644
index 0000000000..f51a0ccb22
--- /dev/null
+++ b/meta/recipes-core/glibc/glibc/0001-Add-unused-attribute.patch
@@ -0,0 +1,36 @@
12015-02-18 Khem Raj <raj.khem@gmail.com>>
2
3 * iconv/gconv_charset.h (strip):
4 Add unused attribute.
5
6From 9c4a91cb331ff1e8cde2314dadee74559d8cb0dd Mon Sep 17 00:00:00 2001
7From: Khem Raj <raj.khem@gmail.com>
8Date: Wed, 18 Feb 2015 19:45:31 +0000
9Subject: [PATCH] Add unused attribute
10
11Helps in avoiding gcc warning when header is is included in
12a source file which does not use both functions
13
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
15
16Upstream-Status: Pending
17---
18 iconv/gconv_charset.h | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h
22index 80290bc..7890a8e 100644
23--- a/iconv/gconv_charset.h
24+++ b/iconv/gconv_charset.h
25@@ -21,7 +21,7 @@
26 #include <locale.h>
27
28
29-static void
30+static void __attribute__ ((unused))
31 strip (char *wp, const char *s)
32 {
33 int slash_count = 0;
34--
352.1.4
36