---
 bogl-pcfb.h  |    2 +-
 bogl-tcfb.h  |    2 +-
 bogl-vga16.h |    2 +-
 bogl.c       |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

--- a/bogl-pcfb.h
+++ b/bogl-pcfb.h
@@ -21,7 +21,7 @@
 
 #include <stddef.h>
 
-size_t bogl_pcfb_init ();
+size_t bogl_pcfb_init (int fb, int new_bpp);
 
 void bogl_pcfb_pixel (int x, int y, int c);
 void bogl_pcfb_hline (int x1, int x2, int y, int c);
--- a/bogl-vga16.h
+++ b/bogl-vga16.h
@@ -21,7 +21,7 @@
 
 #include <stddef.h>
 
-size_t bogl_vga16_init ();
+size_t bogl_vga16_init (void);
 
 void bogl_vga16_pixel (int x, int y, int c);
 void bogl_vga16_hline (int x1, int x2, int y, int c);
--- a/bogl.c
+++ b/bogl.c
@@ -239,7 +239,7 @@ init_fb (void)
   if (type == FB_TYPE_VGA_PLANES)
     {
       bogl_set_palette = bogl_fb_set_palette;
-      return bogl_vga16_init (fb);
+      return bogl_vga16_init ();
     }
 #endif
 
--- a/bogl-tcfb.h
+++ b/bogl-tcfb.h
@@ -21,7 +21,7 @@
 
 #include <stddef.h>
 
-size_t bogl_tcfb_init ();
+size_t bogl_tcfb_init (int fb, int new_bpp);
 
 void bogl_tcfb_pixel (int x, int y, int c);
 void bogl_tcfb_hline (int x1, int x2, int y, int c);
