Skip to content

Commit a399725

Browse files
committed
Fixed ParseAutoBool error.
1 parent 1ba4bcb commit a399725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ TidyTriState TY_(_cfgGetAutoBool)( TidyDocImpl* doc, TidyOptionId optId )
593593
ulong val = TY_(_cfgGet)( doc, optId );
594594
const TidyOptionImpl* opt = &option_defs[ optId ];
595595
assert( opt && opt->type == TidyInteger
596-
&& opt->parser == ParseAutoBool );
596+
&& opt->parser == ParsePickList );
597597
return (TidyTriState) val;
598598
}
599599

0 commit comments

Comments
 (0)