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:
Sirisha Gandikota 2016-09-08 16:15:18 -07:00 committed by Kenneth Graunke
parent bf901a2f8c
commit d2869c95fb
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};