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:
Christoph Egger 2009-07-30 15:28:45 +02:00 committed by Anthony Liguori
parent 0ff6697d1c
commit bb87ece518

View file

@ -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;
}