[Pcsclite-cvs-commit] r4736 - /trunk/PCSC/src/tokenparser.l

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Tue Feb 9 14:30:39 UTC 2010


Author: rousseau
Date: Tue Feb  9 14:30:38 2010
New Revision: 4736

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=4736
Log:
Fix compiler warning

tokenparser.l: In function ‘tperrorCheck’:
tokenparser.l:102: warning: unused parameter ‘token_error’

Modified:
    trunk/PCSC/src/tokenparser.l

Modified: trunk/PCSC/src/tokenparser.l
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/src/tokenparser.l?rev=4736&op=diff
==============================================================================
--- trunk/PCSC/src/tokenparser.l (original)
+++ trunk/PCSC/src/tokenparser.l Tue Feb  9 14:30:38 2010
@@ -100,6 +100,7 @@
 
 void tperrorCheck (char *token_error)
 {
+    (void)token_error;
 }
 
 /**




More information about the Pcsclite-cvs-commit mailing list