[PATCH] gui: image_renderer: fix "no previous prototype for 'squashfs_set_rootarg'" warning

Antony Pavlov antonynpavlov at gmail.com
Fri Apr 7 02:41:46 PDT 2017


The patch fixes this compiler's warning:

  fs/squashfs/squashfs.c:115:6: warning: no previous prototype for 'squashfs_set_rootarg' [-Wmissing-prototypes]
   void squashfs_set_rootarg(struct squashfs_priv *priv, struct fs_device_d *fsdev)
        ^

Signed-off-by: Antony Pavlov <antonynpavlov at gmail.com>
---
 fs/squashfs/squashfs.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/squashfs/squashfs.c b/fs/squashfs/squashfs.c
index 4f4a307da..cf7431ee0 100644
--- a/fs/squashfs/squashfs.c
+++ b/fs/squashfs/squashfs.c
@@ -112,7 +112,8 @@ static struct inode *squashfs_findfile(struct super_block *sb,
 	return NULL;
 }
 
-void squashfs_set_rootarg(struct squashfs_priv *priv, struct fs_device_d *fsdev)
+static void squashfs_set_rootarg(struct squashfs_priv *priv,
+					struct fs_device_d *fsdev)
 {
 	struct ubi_volume_desc *ubi_vol;
 	struct ubi_volume_info vi = {};
-- 
2.11.0




More information about the barebox mailing list