[Pcsclite-cvs-commit] r6671 - trunk/PCSC/src

ludovic.rousseau at free.fr ludovic.rousseau at free.fr
Sun Jul 28 09:29:28 UTC 2013


Author: rousseau
Date: 2013-06-27 21:11:43 +0000 (Thu, 27 Jun 2013)
New Revision: 6671

Modified:
   trunk/PCSC/src/hotplug_macosx.c
Log:
Fix compiler warning

hotplug_macosx.c:298: warning: format ‘%s’ expects type ‘char *’, but
argument 6 has type ‘struct HPDriver *’
hotplug_macosx.c:298: warning: too many arguments for format


Modified: trunk/PCSC/src/hotplug_macosx.c
===================================================================
--- trunk/PCSC/src/hotplug_macosx.c	2013-06-27 21:07:42 UTC (rev 6670)
+++ trunk/PCSC/src/hotplug_macosx.c	2013-06-27 21:11:43 UTC (rev 6671)
@@ -295,8 +295,8 @@
 			CFStringRef strValue = blobValue;
 
 #ifdef DEBUG_HOTPLUG
-			Log3(PCSC_LOG_DEBUG, "Driver without alias: %s",
-				driverBundle, driverBundle->m_libPath);
+			Log3(PCSC_LOG_DEBUG, "Driver without alias: %s %s",
+				driverBundle->m_friendlyName, driverBundle->m_libPath);
 #endif
 
 			driverBundle->m_vendorId = strtoul(CFStringGetCStringPtr(strValue,




More information about the Pcsclite-cvs-commit mailing list