diff options
author | Christoph Egger <Christoph.Egger@amd.com> | 2009-07-30 15:28:45 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:24 -0500 |
commit | bb87ece518e5ae0f7309b4f1758ee9d1c7a56b74 (patch) | |
tree | 4faee96f668b27676e0e3a02eee275043c8c9887 | |
parent | 0ff6697d1c1bc09fa73236be6f72ddccd6aa9279 (diff) |
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:
-rw-r--r-- | hw/qdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |