Module Name: xsrc Committed By: christos Date: Thu Jan 23 04:05:50 UTC 2014
Modified Files: xsrc/xfree/xc/extras/Mesa/src/mesa/math: m_debug_xform.c Log Message: minimal fix for cast from pointer to int of different size. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 \ xsrc/xfree/xc/extras/Mesa/src/mesa/math/m_debug_xform.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: xsrc/xfree/xc/extras/Mesa/src/mesa/math/m_debug_xform.c diff -u xsrc/xfree/xc/extras/Mesa/src/mesa/math/m_debug_xform.c:1.1.1.1 xsrc/xfree/xc/extras/Mesa/src/mesa/math/m_debug_xform.c:1.2 --- xsrc/xfree/xc/extras/Mesa/src/mesa/math/m_debug_xform.c:1.1.1.1 Fri Mar 18 08:06:49 2005 +++ xsrc/xfree/xc/extras/Mesa/src/mesa/math/m_debug_xform.c Wed Jan 22 23:05:50 2014 @@ -187,7 +187,7 @@ static int test_transform_function( tran mat->type = mtypes[mtype]; m = mat->m; - ASSERT( ((GLuint)m & 15) == 0 ); + ASSERT( ((GLuint)(long)m & 15) == 0 ); init_matrix( m );