[Pcsclite-cvs-commit] r4635 - /trunk/PCSC/src/hotplug_macosx.c

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Sun Jan 3 13:02:22 UTC 2010


Author: rousseau
Date: Sun Jan  3 13:02:19 2010
New Revision: 4635

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=4635
Log:
hotplug_macosx.c: In function ‘HPDeviceAppeared’:
hotplug_macosx.c:70: warning: unused parameter ‘refCon’
hotplug_macosx.c: In function ‘HPDeviceDisappeared’:
hotplug_macosx.c:85: warning: unused parameter ‘refCon’

Modified:
    trunk/PCSC/src/hotplug_macosx.c

Modified: trunk/PCSC/src/hotplug_macosx.c
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/src/hotplug_macosx.c?rev=4635&op=diff
==============================================================================
--- trunk/PCSC/src/hotplug_macosx.c (original)
+++ trunk/PCSC/src/hotplug_macosx.c Sun Jan  3 13:02:19 2010
@@ -72,6 +72,8 @@
 	kern_return_t kret;
 	io_service_t obj;
 
+	(void)refCon;
+
 	while ((obj = IOIteratorNext(iterator)))
 		kret = IOObjectRelease(obj);
 
@@ -86,6 +88,8 @@
 {
 	kern_return_t kret;
 	io_service_t obj;
+
+	(void)refCon;
 
 	while ((obj = IOIteratorNext(iterator)))
 		kret = IOObjectRelease(obj);




More information about the Pcsclite-cvs-commit mailing list