[Pcsclite-cvs-commit] r5865 - /trunk/PCSC/src/tokenparser.l
rousseau at users.alioth.debian.org
rousseau at users.alioth.debian.org
Sat Jul 9 11:41:47 UTC 2011
Author: rousseau
Date: Sat Jul 9 11:41:46 2011
New Revision: 5865
URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=5865
Log:
bundleParse(): fix a compilation error if NDEBUG is not definef (i.e.
DEBUG is ON)
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=5865&op=diff
==============================================================================
--- trunk/PCSC/src/tokenparser.l (original)
+++ trunk/PCSC/src/tokenparser.l Sat Jul 9 11:41:46 2011
@@ -159,6 +159,9 @@
{
FILE *file = NULL;
int r;
+#ifndef NDEBUG
+ int i;
+#endif
file = fopen(fileName, "r");
if (!file)
More information about the Pcsclite-cvs-commit
mailing list