[Pcsclite-cvs-commit] r2219 - trunk/pycsc

Ludovic Rousseau rousseau at alioth.debian.org
Thu Nov 16 14:51:24 CET 2006


Author: rousseau
Date: 2006-11-16 14:51:24 +0100 (Thu, 16 Nov 2006)
New Revision: 2219

Modified:
   trunk/pycsc/pycsc.c
Log:
Move the instruction after the #endif on a new line

pycsc.c:473:8: warning: extra tokens at end of #endif directive


Modified: trunk/pycsc/pycsc.c
===================================================================
--- trunk/pycsc/pycsc.c	2006-11-16 13:47:57 UTC (rev 2218)
+++ trunk/pycsc/pycsc.c	2006-11-16 13:51:24 UTC (rev 2219)
@@ -470,7 +470,8 @@
 #else
         rv = SCardControl(object->hCard, dwControlCode, inBuffer, inBufferLen, 
                           outBuffer, sizeof(outBuffer), &outBufferLen);
-#endif	if ( rv != SCARD_S_SUCCESS )
+#endif
+	if ( rv != SCARD_S_SUCCESS )
 	{
 		PyErr_SetString(PycscException, pcsc_stringify_error(rv));
 		return NULL;




More information about the Pcsclite-cvs-commit mailing list