Without this, a system using gcc (GCC) 4.2.4 (Ubuntu 4.2.4-1ubuntu4)
aborts builds after reporting:

tcl.c: In function ‘handle_irscan_command’:
tcl.c:1168: warning: passing argument 1 of ‘buf_set_u32’ discards qualifiers from pointer target type

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
__archive__
David Brownell 2010-04-03 18:36:07 -07:00
parent 33e5dd1272
commit d37a10da52
1 changed files with 2 additions and 1 deletions

View File

@ -1165,7 +1165,8 @@ COMMAND_HANDLER(handle_irscan_command)
retval = parse_u32(CMD_ARGV[i * 2 + 1], &value); retval = parse_u32(CMD_ARGV[i * 2 + 1], &value);
if (ERROR_OK != retval) if (ERROR_OK != retval)
goto error_return; goto error_return;
buf_set_u32((void *)fields[i].out_value, 0, field_size, value); void *v = (void *)fields[i].out_value;
buf_set_u32(v, 0, field_size, value);
fields[i].in_value = NULL; fields[i].in_value = NULL;
} }