From 235269990bd62a906af871c34839ebb922eecb45 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Fri, 13 Jun 2014 23:47:45 +0200 Subject: [PATCH] Fix missing variable on macosx. --- macosx.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/macosx.c b/macosx.c index c1c5d91..71bf0a0 100644 --- a/macosx.c +++ b/macosx.c @@ -28,13 +28,12 @@ enum sp_return get_port_details(struct sp_port *port) char description[128]; int bus, address, vid, pid = -1; char manufacturer[128], product[128], serial[128]; - char baddr[32]; CFMutableDictionaryRef classes; io_iterator_t iter; - io_object_t ioport; + io_object_t ioport, ioparent; CFTypeRef cf_property, cf_bus, cf_address, cf_vendor, cf_product; Boolean result; - char path[PATH_MAX]; + char path[PATH_MAX], class[16]; DEBUG("Getting serial port list"); if (!(classes = IOServiceMatching(kIOSerialBSDServiceValue)))