summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-05-11 21:21:58 +0000
committerjbj <devnull@localhost>2003-05-11 21:21:58 +0000
commite433997769b20ae0420c146322598aaeda73580f (patch)
treefb3d5b82a62115b1ac601601cb4f3e0259ea22a0
parent583e1e89eb365c516d28c1706e8aa8fb98aed1f2 (diff)
downloadlibrpm-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.c4
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--)