* Fix a few -pedantic warnings

This commit is contained in:
Tim Angus 2007-07-25 21:28:15 +00:00
parent e8bbb1f2d1
commit 0c99c0c1d2
5 changed files with 5 additions and 5 deletions

View file

@ -1153,7 +1153,7 @@ struct patchCollide_s *CM_GeneratePatchCollide( int width, int height, vec3_t *p
if ( width <= 2 || height <= 2 || !points ) {
Com_Error( ERR_DROP, "CM_GeneratePatchFacets: bad parameters: (%i, %i, %p)",
width, height, points );
width, height, (void *)points );
}
if ( !(width & 1) || !(height & 1) ) {