tolower -> qemu_tolower
Use qemu_tolower() instead of tolower(). Fixes warning on NetBSD. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
This commit is contained in:
parent
0ff6697d1c
commit
bb87ece518
@ -520,7 +520,7 @@ BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name)
|
||||
len = snprintf(buf, len, "%s.%d", info->name,
|
||||
parent ? parent->num_child_bus : 0);
|
||||
for (i = 0; i < len; i++)
|
||||
buf[i] = tolower(buf[i]);
|
||||
buf[i] = qemu_tolower(buf[i]);
|
||||
bus->name = buf;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user