fixed typo

This commit is contained in:
Arvid Norberg 2014-07-01 07:51:23 +00:00
parent 34737965d1
commit 4988a410b1
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ void sc_reduce(unsigned char *s) {
s10 -= carry10 << 21;
s[0] = (unsigned char) ((s0 >> 0) & 0xff);
s[1] = (unsigned char) ((s0 >> 8 & 0xff));
s[1] = (unsigned char) ((s0 >> 8) & 0xff);
s[2] = (unsigned char) (((s0 >> 16) | (s1 << 5)) & 0xff);
s[3] = (unsigned char) ((s1 >> 3) & 0xff);
s[4] = (unsigned char) ((s1 >> 11) & 0xff);