diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2015-08-16 20:16:43 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2015-08-16 20:16:43 +0000 |
commit | 4ab18306829b42596b31568bf51cf6644941f60f (patch) | |
tree | d7aec2fcfb75fcfb8534b849c1fe5ab461fc2e8c /package/utils/ubi-utils/patches/110-gcc5-fix.patch | |
parent | b1bd85c40eb5d22253fcc09c441abb50308ecd40 (diff) | |
download | upstream-4ab18306829b42596b31568bf51cf6644941f60f.tar.gz upstream-4ab18306829b42596b31568bf51cf6644941f60f.tar.bz2 upstream-4ab18306829b42596b31568bf51cf6644941f60f.zip |
ubi-utils: fix build with gcc5
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 46610
Diffstat (limited to 'package/utils/ubi-utils/patches/110-gcc5-fix.patch')
-rw-r--r-- | package/utils/ubi-utils/patches/110-gcc5-fix.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/package/utils/ubi-utils/patches/110-gcc5-fix.patch b/package/utils/ubi-utils/patches/110-gcc5-fix.patch new file mode 100644 index 0000000000..d871d670d2 --- /dev/null +++ b/package/utils/ubi-utils/patches/110-gcc5-fix.patch @@ -0,0 +1,41 @@ +--- a/mkfs.ubifs/hashtable/hashtable_itr.c ++++ b/mkfs.ubifs/hashtable/hashtable_itr.c +@@ -35,18 +35,6 @@ hashtable_iterator(struct hashtable *h) + } + + /*****************************************************************************/ +-/* key - return the key of the (key,value) pair at the current position */ +-/* value - return the value of the (key,value) pair at the current position */ +- +-void * +-hashtable_iterator_key(struct hashtable_itr *i) +-{ return i->e->k; } +- +-void * +-hashtable_iterator_value(struct hashtable_itr *i) +-{ return i->e->v; } +- +-/*****************************************************************************/ + /* advance - advance the iterator to the next element + * returns zero if advanced to end of table */ + +--- a/mkfs.ubifs/hashtable/hashtable_itr.h ++++ b/mkfs.ubifs/hashtable/hashtable_itr.h +@@ -28,7 +28,7 @@ hashtable_iterator(struct hashtable *h); + /* hashtable_iterator_key + * - return the value of the (key,value) pair at the current position */ + +-extern inline void * ++static inline void * + hashtable_iterator_key(struct hashtable_itr *i) + { + return i->e->k; +@@ -37,7 +37,7 @@ hashtable_iterator_key(struct hashtable_ + /*****************************************************************************/ + /* value - return the value of the (key,value) pair at the current position */ + +-extern inline void * ++static inline void * + hashtable_iterator_value(struct hashtable_itr *i) + { + return i->e->v; |