Replace a "const const" with a "const"

Looks like this squeaked in while I was doing a search-and-replace
to constify things.  Coverity CID 483.
This commit is contained in:
Nick Mathewson 2011-07-01 11:11:35 -04:00
parent 0b536469ee
commit da62af6f6b

View File

@ -2367,7 +2367,7 @@ options_trial_assign(config_line_t *list, int use_defaults,
* Called from option_reset() and config_free(). */
static void
option_clear(const config_format_t *fmt, or_options_t *options,
const const config_var_t *var)
const config_var_t *var)
{
void *lvalue = STRUCT_VAR_P(options, var->var_offset);
(void)fmt; /* unused */