summaryrefslogtreecommitdiffstats
path: root/generic/tclTomMathInterface.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2005-10-13 00:14:37 (GMT)
committerdgp <dgp@noemail.net>2005-10-13 00:14:37 (GMT)
commitc23760a6859f5932b47b173bae4ca7a4bc525471 (patch)
tree19ee19dcc8dca7f9d563f6df4e5a21d8c27b3d88 /generic/tclTomMathInterface.c
parent54a5868076b86524af76fa563111f5d83b9870a2 (diff)
downloadtcl-c23760a6859f5932b47b173bae4ca7a4bc525471.zip
tcl-c23760a6859f5932b47b173bae4ca7a4bc525471.tar.gz
tcl-c23760a6859f5932b47b173bae4ca7a4bc525471.tar.bz2
quick typo fix; testing
FossilOrigin-Name: ff7bf450e7ecfe0c588c0a42447508617d2c971f
Diffstat (limited to 'generic/tclTomMathInterface.c')
-rw-r--r--generic/tclTomMathInterface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTomMathInterface.c b/generic/tclTomMathInterface.c
index 866cf08..bf62963 100644
--- a/generic/tclTomMathInterface.c
+++ b/generic/tclTomMathInterface.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTomMathInterface.c,v 1.4 2005/10/12 23:51:44 dkf Exp $
+ * RCS: @(#) $Id: tclTomMathInterface.c,v 1.5 2005/10/13 00:14:38 dgp Exp $
*/
#include "tclInt.h"
@@ -220,7 +220,7 @@ TclBNInitBignumFromWideUInt(
*/
p = a->dp;
- while (vd) {
+ while (v) {
*p++ = (mp_digit) (v & MP_MASK);
v >>= MP_DIGIT_BIT;
}