diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-01-03 17:53:58 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-01-03 17:53:58 -0500 |
commit | 3862b2dab5c2470ead393cd0e1b4098e8a5d40a9 (patch) | |
tree | 59c33da5e480695645f3b3014ca35f446cb757e6 /vgasrc | |
parent | 1ca05b0f393c0201c0e8efe87831edddb6a53532 (diff) | |
download | seabios-3862b2dab5c2470ead393cd0e1b4098e8a5d40a9.tar.gz |
vgabios: Fix compile error due to fixed prototypes.
Diffstat (limited to 'vgasrc')
-rw-r--r-- | vgasrc/vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vgasrc/vga.c b/vgasrc/vga.c index e38298e7..d734e235 100644 --- a/vgasrc/vga.c +++ b/vgasrc/vga.c @@ -669,7 +669,7 @@ handle_101007(struct bregs *regs) static void handle_101008(struct bregs *regs) { - regs->bh = vgahw_get_overscan_border_color(regs); + regs->bh = vgahw_get_overscan_border_color(); } static void |