=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/du/du.c,v retrieving revision 1.8 retrieving revision 1.9 diff -c -r1.8 -r1.9 *** src/usr.bin/du/du.c 2001/05/02 23:26:53 1.8 --- src/usr.bin/du/du.c 2001/07/12 05:17:00 1.9 *************** *** 1,4 **** ! /* $OpenBSD: du.c,v 1.8 2001/05/02 23:26:53 pjanzen Exp $ */ /* $NetBSD: du.c,v 1.11 1996/10/18 07:20:35 thorpej Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: du.c,v 1.9 2001/07/12 05:17:00 deraadt Exp $ */ /* $NetBSD: du.c,v 1.11 1996/10/18 07:20:35 thorpej Exp $ */ /* *************** *** 47,53 **** #if 0 static char sccsid[] = "@(#)du.c 8.5 (Berkeley) 5/4/95"; #else ! static char rcsid[] = "$OpenBSD: du.c,v 1.8 2001/05/02 23:26:53 pjanzen Exp $"; #endif #endif /* not lint */ --- 47,53 ---- #if 0 static char sccsid[] = "@(#)du.c 8.5 (Berkeley) 5/4/95"; #else ! static char rcsid[] = "$OpenBSD: du.c,v 1.9 2001/07/12 05:17:00 deraadt Exp $"; #endif #endif /* not lint */ *************** *** 299,305 **** double bytes; if (!hflag) ! (void)printf("%qd\t%s\n", size, path); else { bytes = (double)size * 512.0; unit = unit_adjust(&bytes); --- 299,305 ---- double bytes; if (!hflag) ! (void)printf("%lld\t%s\n", (long long)size, path); else { bytes = (double)size * 512.0; unit = unit_adjust(&bytes);