case EOF is now checked only on x86 arches

This check causes problems on architectures where char is unsigned, thus
EOF which is a signed int has a value less of the minimum permitted by the type.
To be honest this check could just be avoided alltogether, maybe in the future.
xkbcommon
Alessandro Mauri 4 years ago
parent 04bfca1932
commit 3bd678d48e
  1. 4
      hkd.c

@ -753,7 +753,9 @@ void parse_config_file (void)
bb++;
// get state
switch (*bb) {
case (int)EOF:
#if defined(__X86_64__) || defined(__i386__)
case EOF:
#endif
case '\0':
// If it is the end of the last block exit
if (exit_state > 1)

Loading…
Cancel
Save