Fixed ParseAutoBool error.

This commit is contained in:
Jim Derry 2017-05-13 11:39:13 -04:00
parent 1ba4bcb753
commit a399725a1e
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ TidyTriState TY_(_cfgGetAutoBool)( TidyDocImpl* doc, TidyOptionId optId )
ulong val = TY_(_cfgGet)( doc, optId );
const TidyOptionImpl* opt = &option_defs[ optId ];
assert( opt && opt->type == TidyInteger
&& opt->parser == ParseAutoBool );
&& opt->parser == ParsePickList );
return (TidyTriState) val;
}