diff options
author | atmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-06-22 19:51:25 +0000 |
---|---|---|
committer | atmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-06-22 19:51:25 +0000 |
commit | 9976f4de37aff8b436712ddd10b48b0ecb0e7db2 (patch) | |
tree | e0d93483a7fb0b8ebff9f86b0fbfbbaac179652e /libvo | |
parent | 311908c693241a52c9f72bc22a8f85b715bfdb7d (diff) |
Fixed pointer->integer cast warning.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1194 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_dga.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libvo/vo_dga.c b/libvo/vo_dga.c index 49ef5501c3..4236c4dc07 100644 --- a/libvo/vo_dga.c +++ b/libvo/vo_dga.c @@ -23,6 +23,9 @@ * - works only on x86 architectures * * $Log$ + * Revision 1.27 2001/06/22 19:51:25 atmosfear + * Fixed pointer->integer cast warning. + * * Revision 1.26 2001/06/18 16:38:06 acki2 * - just modified an error message * @@ -1064,7 +1067,7 @@ static uint32_t init( uint32_t width, uint32_t height, vo_dga_dbf_current = 0; - if(!vo_doublebuffering) vo_dga_dbf_mem_offset = NULL; + if(!vo_doublebuffering) vo_dga_dbf_mem_offset = 0; // if(format ==IMGFMT_YV12 ) //vo_dga_dbf_mem_offset = 0; |