From cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 1 Apr 2006 19:24:03 +0000 Subject: Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. --- src/libmp/port/mprand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libmp/port/mprand.c') diff --git a/src/libmp/port/mprand.c b/src/libmp/port/mprand.c index aaf413b4..95a01ccb 100644 --- a/src/libmp/port/mprand.c +++ b/src/libmp/port/mprand.c @@ -22,7 +22,7 @@ mprand(int bits, void (*gen)(uchar*, int), mpint *b) betomp(p, n*Dbytes, b); free(p); - // make sure we don't give too many bits + /* make sure we don't give too many bits */ m = bits%Dbits; n--; if(m > 0){ -- cgit v1.2.3