1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/devel/cvsgraph/files/patch-cvsgraph.c
Pav Lucistnik 677f6b01f7 - Update to 1.5.2
- Allow on all archs

PR:		ports/86389
Submitted by:	UEMURA Tetsuya <t_uemura@macome.co.jp>
Approved by:	maintainer timeout (trevor, 17 days)
2005-10-08 19:48:04 +00:00

14 lines
493 B
C

--- cvsgraph.c.orig Wed Jun 15 05:36:59 2005
+++ cvsgraph.c Wed Sep 21 11:06:22 2005
@@ -191,8 +191,8 @@
{
printf("%sdtext.rev : ", p);
dump_rev("", d->rev);
- printf("%sdtext.log : %d bytes\n", p, d->log ? strlen(d->log) : -1);
- printf("%sdtext.text : %d bytes\n", p, d->text ? strlen(d->text) : -1);
+ printf("%sdtext.log : %ld bytes\n", p, d->log ? (long) strlen(d->log) : -1);
+ printf("%sdtext.text : %ld bytes\n", p, d->text ? (long) strlen(d->text) : -1);
printf("\n");
}