[Pcsclite-cvs-commit] r3322 - /trunk/Drivers/ccid/src/ifdhandler.c

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Sat Feb 21 13:59:54 UTC 2009


Author: rousseau
Date: Sat Feb 21 13:59:54 2009
New Revision: 3322

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=3322
Log:
typo in comment

Modified:
    trunk/Drivers/ccid/src/ifdhandler.c

Modified: trunk/Drivers/ccid/src/ifdhandler.c
URL: http://svn.debian.org/wsvn/pcsclite/trunk/Drivers/ccid/src/ifdhandler.c?rev=3322&op=diff
==============================================================================
--- trunk/Drivers/ccid/src/ifdhandler.c (original)
+++ trunk/Drivers/ccid/src/ifdhandler.c Sat Feb 21 13:59:54 2009
@@ -1605,7 +1605,7 @@
 	/* ISO in */
 	t  = 261 * EGT + (3 + 3) * WWT;
 	/* Convert from milliseonds to seconds rouned to the upper value
-	 * use +1 instead of ceil() to round up to the nearest interger
+	 * use +1 instead of ceil() to round up to the nearest integer
 	 * so we can avoid a dependency on the math library */
 	t = t/1000 +1;
 	if (timeout < t)
@@ -1662,7 +1662,7 @@
 	timeout = 260*EGT + BWT + 260*CWT;
 
 	/* Convert from milliseonds to seconds rounded to the upper value
-	 * we use +1 instead of ceil() to round up to the nearest greater interger
+	 * we use +1 instead of ceil() to round up to the nearest greater integer
 	 * so we can avoid a dependency on the math library */
 	timeout = timeout/1000 +1;
 




More information about the Pcsclite-cvs-commit mailing list