avoid shadowing warning

This commit is contained in:
Joey Hess 2019-01-21 20:40:30 -04:00
parent b79ef475ac
commit d913961b7b
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -104,4 +104,4 @@ prop_parse_show_Config c
-- allowed by the current character set in the config may not
-- round-trip in an identical representation due to the use of the
-- filesystem encoding.
excluded c = not (isAlphaNum c) || not (isAscii c)
excluded ch = not (isAlphaNum ch) || not (isAscii ch)