Update to version 4.0pl80. package ok.

This commit is contained in:
fgsch 1999-10-27 04:37:28 +00:00
parent 14eaa7b130
commit 249c2e5d38
3 changed files with 6 additions and 15 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.4 1999/09/23 20:45:18 brad Exp $
# $OpenBSD: Makefile,v 1.5 1999/10/27 04:37:28 fgsch Exp $
DISTNAME= gnuchess-4.0.pl79
PKGNAME= gnuchess-4.0.79
DISTNAME= gnuchess-4.0.pl80
PKGNAME= gnuchess-4.0.80
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= gnuchess

View File

@ -1,3 +1,3 @@
MD5 (gnuchess-4.0.pl79.tar.gz) = 54be6bdcc55d36387213389369f78ec0
RMD160 (gnuchess-4.0.pl79.tar.gz) = a26c31a7fba5353912871ef0e8ab307cf409bb64
SHA1 (gnuchess-4.0.pl79.tar.gz) = 26f71f1523d5ec5a8acf9d700b8e300e9179c0d4
MD5 (gnuchess-4.0.pl80.tar.gz) = 833110654ec086b4ace45e037612033e
RMD160 (gnuchess-4.0.pl80.tar.gz) = 889510f73c3e5143fc312c010e8324e68c11dcdc
SHA1 (gnuchess-4.0.pl80.tar.gz) = 0c581be2e7b6b17524e288e105a468a7ca328c8b

View File

@ -42,12 +42,3 @@
p = GNUANinbuf1;
q = GNUANinbuf;
while (true)
@@ -1724,7 +1724,7 @@
move_percent[black] = ((float) same_moves[black]) * 200 / (float) (GNUANmovecnt + (GNUANmovecnt % 2 ? 1 : 0));
fprintf (fpout, "\n White's percentage was %5.2f%%. Black's percentage was %5.2f%%.\n", move_percent[white], move_percent[black]);
time (&end_time);
- elapsed_time = difftime(end_time - start_time);
+ elapsed_time = difftime(end_time, start_time);
fprintf (fpout, "\n Elapsed time was %ld seconds.\n", elapsed_time);
fclose (fpin);
fclose (fpout);