=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/du/du.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- src/usr.bin/du/du.c 2001/07/12 05:17:00 1.9 +++ src/usr.bin/du/du.c 2001/07/30 00:53:38 1.10 @@ -1,4 +1,4 @@ -/* $OpenBSD: du.c,v 1.9 2001/07/12 05:17:00 deraadt Exp $ */ +/* $OpenBSD: du.c,v 1.10 2001/07/30 00:53:38 deraadt Exp $ */ /* $NetBSD: du.c,v 1.11 1996/10/18 07:20:35 thorpej Exp $ */ /* @@ -47,7 +47,7 @@ #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 $"; +static char rcsid[] = "$OpenBSD: du.c,v 1.10 2001/07/30 00:53:38 deraadt Exp $"; #endif #endif /* not lint */ @@ -305,7 +305,7 @@ unit = unit_adjust(&bytes); if (bytes == 0) - (void)printf(" 0B\t%s\n", path); + (void)printf("0B\t%s\n", path); else if (bytes > 10) (void)printf("%.0f%c\t%s\n", bytes, "BKMGTPE"[unit], path); else