diff options
author | dgp <dgp@users.sourceforge.net> | 2005-10-13 00:14:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-10-13 00:14:38 (GMT) |
commit | c6806aee57438976f228b81eac9facddb6fa4796 (patch) | |
tree | 19ee19dcc8dca7f9d563f6df4e5a21d8c27b3d88 /generic/tclTomMathInterface.c | |
parent | 934ada2e3b3bde158c61f7118fc7a840cf5c0b61 (diff) | |
download | tcl-c6806aee57438976f228b81eac9facddb6fa4796.zip tcl-c6806aee57438976f228b81eac9facddb6fa4796.tar.gz tcl-c6806aee57438976f228b81eac9facddb6fa4796.tar.bz2 |
quick typo fix; testing
Diffstat (limited to 'generic/tclTomMathInterface.c')
-rw-r--r-- | generic/tclTomMathInterface.c | 4 |
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; } |