mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-31 00:51:17 +00:00
* Fix a few -pedantic warnings
This commit is contained in:
parent
e8bbb1f2d1
commit
0c99c0c1d2
5 changed files with 5 additions and 5 deletions
|
@ -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) ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue