diff libvo/vo_svga.c @ 18950:a943bc3f26c8

Make some functions static. Patch by Stefan Huehner, stefan at huehner org.
author uau
date Sat, 08 Jul 2006 15:26:36 +0000
parents 5766a9d21992
children d27e00bb61b8
line wrap: on
line diff
--- a/libvo/vo_svga.c	Sat Jul 08 15:00:37 2006 +0000
+++ b/libvo/vo_svga.c	Sat Jul 08 15:26:36 2006 +0000
@@ -303,7 +303,7 @@
   return VO_TRUE;
 }
 
-int bpp_from_vminfo(vga_modeinfo *vminfo){
+static int bpp_from_vminfo(vga_modeinfo *vminfo){
   switch(vminfo->colors){
     case 2: return 1;
     case 16: return 4;
@@ -315,7 +315,7 @@
   return 0;
 }
 
-int find_best_svga_mode(int req_w,int req_h, int req_bpp){
+static int find_best_svga_mode(int req_w,int req_h, int req_bpp){
  int badness,prev_badness;
  int bestmode,lastmode;
  int i;