diff options
author | jbj <devnull@localhost> | 2003-05-11 21:21:58 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-05-11 21:21:58 +0000 |
commit | e433997769b20ae0420c146322598aaeda73580f (patch) | |
tree | fb3d5b82a62115b1ac601601cb4f3e0259ea22a0 | |
parent | 583e1e89eb365c516d28c1706e8aa8fb98aed1f2 (diff) | |
download | librpm-tizen-e433997769b20ae0420c146322598aaeda73580f.tar.gz librpm-tizen-e433997769b20ae0420c146322598aaeda73580f.tar.bz2 librpm-tizen-e433997769b20ae0420c146322598aaeda73580f.zip |
Typo from merging.
CVS patchset: 6833
CVS date: 2003/05/11 21:21:58
-rw-r--r-- | beecrypt/mp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/beecrypt/mp.c b/beecrypt/mp.c index d3cb268b7..158132a97 100644 --- a/beecrypt/mp.c +++ b/beecrypt/mp.c @@ -1264,9 +1264,9 @@ void mpndivmod(mpw* result, size_t xsize, const mpw* xdata, size_t ysize, const size_t qsize = xsize-ysize; *result = (mpge(ysize, xdata, ydata) ? 1 : 0); - mpcopy(xsize, result + 1, xdata); + mpcopy(xsize, result+1, xdata); if (*result) - (void) mpsub(ysize, result, ydata); + (void) mpsub(ysize, result+1, ydata); result++; while (qsize--) |