Fixed a warning emitted from arm-none-eabi-gcc in hostnport.c (#785)
This commit is contained in:
@@ -708,7 +708,7 @@ bool bacnet_bdt_entry_from_ascii(BACNET_BDT_ENTRY *value, const char *argv)
|
||||
p = 0xBAC0U;
|
||||
}
|
||||
name = argv;
|
||||
if (name && isalnum(name[0])) {
|
||||
if (name && isalnum((unsigned char)name[0])) {
|
||||
value->bbmd_address.host_ip_address = false;
|
||||
value->bbmd_address.host_name = true;
|
||||
characterstring_init(
|
||||
|
||||
Reference in New Issue
Block a user