=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cmp/special.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/cmp/special.c 1999/08/03 16:02:44 1.3 +++ src/usr.bin/cmp/special.c 2001/07/12 05:16:58 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: special.c,v 1.3 1999/08/03 16:02:44 mickey Exp $ */ +/* $OpenBSD: special.c,v 1.4 2001/07/12 05:16:58 deraadt Exp $ */ /* $NetBSD: special.c,v 1.2 1995/09/08 03:23:00 tls Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)special.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: special.c,v 1.3 1999/08/03 16:02:44 mickey Exp $"; +static char rcsid[] = "$OpenBSD: special.c,v 1.4 2001/07/12 05:16:58 deraadt Exp $"; #endif #endif /* not lint */ @@ -83,7 +83,8 @@ if (ch1 != ch2) { if (lflag) { dfound = 1; - (void)printf("%6qd %3o %3o\n", byte, ch1, ch2); + (void)printf("%6lld %3o %3o\n", (long long)byte, + ch1, ch2); } else diffmsg(file1, file2, byte, line); /* NOTREACHED */