summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@amd.com>2009-07-17 17:48:02 +0000
committerAnthony Liguori <aliguori@us.ibm.com>2009-07-22 15:40:55 -0500
commitb19bb78c2fa4d388b6c0d89bf6f9ad3e450b8d12 (patch)
treecf19828ced77f7f6c9e49c0d1df7cf5b3e7a202f
parentc3862e8d082327d32c72a5188ea0629ab56c09ec (diff)
downloadqemu-b19bb78c2fa4d388b6c0d89bf6f9ad3e450b8d12.tar.gz
isxdigit -> qemu_isxdigit
Hi! Attached patch uses qemu_isxdigit() instead of isxdigit(). Fixes build warning on NetBSD. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632
-rw-r--r--hw/qdev-properties.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/qdev-properties.c b/hw/qdev-properties.c
index 06c25aff71..76699b08ba 100644
--- a/hw/qdev-properties.c
+++ b/hw/qdev-properties.c
@@ -117,9 +117,9 @@ static int parse_mac(DeviceState *dev, Property *prop, const char *str)
char *p;
for (i = 0, pos = 0; i < 6; i++, pos += 3) {
- if (!isxdigit(str[pos]))
+ if (!qemu_isxdigit(str[pos]))
return -1;
- if (!isxdigit(str[pos+1]))
+ if (!qemu_isxdigit(str[pos+1]))
return -1;
if (i == 5 && str[pos+2] != '\0')
return -1;