[Pcsclite-cvs-commit] r6342 - /trunk/pcsc-tools/pcsc_scan.c

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Sat Jun 16 10:37:48 UTC 2012


Author: rousseau
Date: Sat Jun 16 10:37:48 2012
New Revision: 6342

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

pcsc_scan.c:131:18: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]

Modified:
    trunk/pcsc-tools/pcsc_scan.c

Modified: trunk/pcsc-tools/pcsc_scan.c
URL: http://svn.debian.org/wsvn/pcsclite/trunk/pcsc-tools/pcsc_scan.c?rev=6342&op=diff
==============================================================================
--- trunk/pcsc-tools/pcsc_scan.c (original)
+++ trunk/pcsc-tools/pcsc_scan.c Sat Jun 16 10:37:48 2012
@@ -125,7 +125,7 @@
 		term = getenv("TERM");
 		if (term)
 		{
-			int j;
+			size_t j;
 
 			/* for each known color terminal */
 			for (j = 0; j < sizeof(terms) / sizeof(terms[0]); j++)




More information about the Pcsclite-cvs-commit mailing list