From 4596c46213ae652af1b2e4bc6b691076cff2c416 Mon Sep 17 00:00:00 2001 From: havoc Date: Sat, 24 May 2003 14:48:33 +0000 Subject: [PATCH] made id_pointer fields of rcachearrayrequest_t const (because they'll never be used as pointers anyway) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3026 d7cf8633-e32d-0410-b094-e92efae38249 --- gl_backend.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gl_backend.h b/gl_backend.h index 76f40bf5..edcd19cd 100644 --- a/gl_backend.h +++ b/gl_backend.h @@ -104,9 +104,9 @@ typedef struct rcachearrayrequest_s // for use by the code that is requesting the array, these are not // directly used but merely compared to determine if cache items are // identical - void *id_pointer1; - void *id_pointer2; - void *id_pointer3; + const void *id_pointer1; + const void *id_pointer2; + const void *id_pointer3; int id_number1; int id_number2; int id_number3; -- 2.39.2