mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
aubinator: Fix compiler warning
Add 'const' qualifier to gen_field_iterator::p pointer (Ken) Signed-off-by: Sirisha Gandikota <Sirisha.Gandikota@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
bf901a2f8c
commit
d2869c95fb
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ struct gen_field_iterator {
|
|||
struct gen_group *group;
|
||||
const char *name;
|
||||
char value[128];
|
||||
uint32_t *p;
|
||||
const uint32_t *p;
|
||||
int i;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue