=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cmp/regular.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/cmp/regular.c 2000/10/12 13:33:47 1.5 --- src/usr.bin/cmp/regular.c 2001/07/12 05:16:58 1.6 *************** *** 1,4 **** ! /* $OpenBSD: regular.c,v 1.5 2000/10/12 13:33:47 deraadt Exp $ */ /* $NetBSD: regular.c,v 1.2 1995/09/08 03:22:59 tls Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: regular.c,v 1.6 2001/07/12 05:16:58 deraadt Exp $ */ /* $NetBSD: regular.c,v 1.2 1995/09/08 03:22:59 tls Exp $ */ /*- *************** *** 38,44 **** #if 0 static char sccsid[] = "@(#)regular.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: regular.c,v 1.5 2000/10/12 13:33:47 deraadt Exp $"; #endif #endif /* not lint */ --- 38,44 ---- #if 0 static char sccsid[] = "@(#)regular.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: regular.c,v 1.6 2001/07/12 05:16:58 deraadt Exp $"; #endif #endif /* not lint */ *************** *** 95,101 **** if ((ch = *p1) != *p2) { if (lflag) { dfound = 1; ! (void)printf("%6qd %3o %3o\n", byte, ch, *p2); } else diffmsg(file1, file2, byte, line); /* NOTREACHED */ --- 95,102 ---- if ((ch = *p1) != *p2) { if (lflag) { dfound = 1; ! (void)printf("%6lld %3o %3o\n", (long long)byte, ! ch, *p2); } else diffmsg(file1, file2, byte, line); /* NOTREACHED */