diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-28 11:04:36 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-28 11:04:36 +0000 |
commit | 2e2c64dd3adb225800b5bc42cff75cfca67071be (patch) | |
tree | f04498ccfcf136c012f0c94dd6201174863bc5c5 | |
parent | 4050debeff281aba1ccd8c4f57b890fcc2680512 (diff) |
warning fix:
vo_xmga.c: At top level:
mga_common.c:212: warning: 'mga_fullscreen' defined but not used
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24261 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/mga_common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvo/mga_common.c b/libvo/mga_common.c index 2e6937c195..9eff37bb1e 100644 --- a/libvo/mga_common.c +++ b/libvo/mga_common.c @@ -207,6 +207,7 @@ query_format(uint32_t format) return 0; } +#ifndef VO_XMGA static void mga_fullscreen() { uint32_t w,h; @@ -226,6 +227,7 @@ static void mga_fullscreen() if ( ioctl( f,MGA_VID_CONFIG,&mga_vid_config ) ) mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_MGA_ErrorInConfigIoctl ); } +#endif static int control(uint32_t request, void *data, ...) { |