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

Ludovic Rousseau rousseau at costa.debian.org
Mon Nov 21 13:17:00 UTC 2005


Author: rousseau
Date: 2005-11-21 13:17:00 +0000 (Mon, 21 Nov 2005)
New Revision: 1724

Modified:
   trunk/PCSC/src/powermgt_macosx.c
Log:
PMRegisterForPowerEvents(): use THREAD_ATTR_DEFAULT instead of NULL in
SYS_ThreadCreate()


Modified: trunk/PCSC/src/powermgt_macosx.c
===================================================================
--- trunk/PCSC/src/powermgt_macosx.c	2005-11-21 13:13:30 UTC (rev 1723)
+++ trunk/PCSC/src/powermgt_macosx.c	2005-11-21 13:17:00 UTC (rev 1724)
@@ -93,7 +93,7 @@
 
   LONG rv; 
     
-  rv = SYS_ThreadCreate(&pmgmtThread, NULL,
+  rv = SYS_ThreadCreate(&pmgmtThread, THREAD_ATTR_DEFAULT,
                         (LPVOID) PMPowerRegistrationThread, NULL);
   return 0;
 }




More information about the Pcsclite-cvs-commit mailing list