aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-10-30 21:47:05 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-10-30 21:47:05 +0000
commit8eed6f271ba7c24dcb3b451be99efe7ca91969ad (patch)
treed753801027087cc02aee6bb845a2aed629131f9d
parentff63ea8b4d214cb8dcd12515da5b2e5e4d725e3e (diff)
downloadupstream-8eed6f271ba7c24dcb3b451be99efe7ca91969ad.tar.gz
upstream-8eed6f271ba7c24dcb3b451be99efe7ca91969ad.tar.bz2
upstream-8eed6f271ba7c24dcb3b451be99efe7ca91969ad.zip
squashfs: make inline functions static to fix build errors
Signed-off-by: Felix Fietkau <nbd@openwrt.org> Backport of r38563 git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@38616 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--tools/squashfs/patches/110-no_nonstatic_inline.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/squashfs/patches/110-no_nonstatic_inline.patch b/tools/squashfs/patches/110-no_nonstatic_inline.patch
new file mode 100644
index 0000000000..8e288f336e
--- /dev/null
+++ b/tools/squashfs/patches/110-no_nonstatic_inline.patch
@@ -0,0 +1,11 @@
+--- a/squashfs-tools/mksquashfs.c
++++ b/squashfs-tools/mksquashfs.c
+@@ -1347,7 +1347,7 @@ struct inode_info *lookup_inode(struct s
+ }
+
+
+-inline void add_dir_entry(char *name, char *pathname, struct dir_info *sub_dir, struct inode_info *inode_info, void *data, struct dir_info *dir)
++static inline void add_dir_entry(char *name, char *pathname, struct dir_info *sub_dir, struct inode_info *inode_info, void *data, struct dir_info *dir)
+ {
+ if((dir->count % DIR_ENTRIES) == 0)
+ if((dir->list = realloc(dir->list, (dir->count + DIR_ENTRIES) * sizeof(struct dir_ent *))) == NULL)