The patch fixes these compiler's warnings:

  lib/gui/bmp.c:12:15: warning: no previous prototype for 'bmp_open' 
[-Wmissing-prototypes]
   struct image *bmp_open(char *inbuf, int insize)
                 ^
  lib/gui/bmp.c:33:6: warning: no previous prototype for 'bmp_close' 
[-Wmissing-prototypes]
   void bmp_close(struct image *img)
        ^

Signed-off-by: Antony Pavlov <antonynpav...@gmail.com>
---
 lib/gui/bmp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/gui/bmp.c b/lib/gui/bmp.c
index 143aa2805..8bffc70a4 100644
--- a/lib/gui/bmp.c
+++ b/lib/gui/bmp.c
@@ -9,7 +9,7 @@
 #include <gui/image_renderer.h>
 #include <asm/unaligned.h>
 
-struct image *bmp_open(char *inbuf, int insize)
+static struct image *bmp_open(char *inbuf, int insize)
 {
        struct image *img = calloc(1, sizeof(struct image));
        struct bmp_image *bmp = (struct bmp_image*)inbuf;
@@ -30,7 +30,7 @@ struct image *bmp_open(char *inbuf, int insize)
        return img;
 }
 
-void bmp_close(struct image *img)
+static void bmp_close(struct image *img)
 {
        free(img->data);
 }
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to