1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Fix copy-and-paste error in testbn main program.

I called a 'pow' test line 'mul' in an error message.
This commit is contained in:
Simon Tatham 2015-12-13 14:46:42 +00:00
parent d0e9630e1c
commit 90c7b1562c

View File

@ -2025,7 +2025,7 @@ int main(int argc, char **argv)
Bignum base, expt, modulus, expected, answer;
if (ptrnum != 4) {
printf("%d: mul with %d parameters, expected 4\n", line, ptrnum);
printf("%d: pow with %d parameters, expected 4\n", line, ptrnum);
exit(1);
}