]> granicus.if.org Git - graphviz/commit
mm2gv: squash -Wconversion warnings for 'tolower' usage
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 9 May 2022 02:30:23 +0000 (19:30 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 14 May 2022 18:31:10 +0000 (11:31 -0700)
commit6c29170f9f29466374fbc6e8e62a1b6916c6bc59
tree4d8fef0c70b4109690563ff856de25e9f7d0410e
parente9b284004517fbe5f4728601430371f622dd77a8
mm2gv: squash -Wconversion warnings for 'tolower' usage

For historical reasons, C functions/macros like `tolower` are specified to take
and return an `int`. This means sometimes one set of pedantic compilers (MinGW
with -Wconversion) complains about passing `char` values into these ctype.h
interfaces and another set of pedantic compilers (GCC with -Wconversion)
complains about coercing the result into a `char`. This change suppresses both
of these false positives.
cmd/tools/mmio.c