diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-10-10 07:57:33 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-10-10 07:57:33 +0000 |
commit | f0707215f7da89a79b0ada0449f950b93279d381 (patch) | |
tree | b54e4a0dabccf4ed226ba787faa9dce6beeaf155 /sys/msdosfs/msdosfs_fat.c | |
parent | 61ce519bad311a0d655bdccaf970a7f0b6c7777f (diff) | |
download | src-f0707215f7da89a79b0ada0449f950b93279d381.tar.gz src-f0707215f7da89a79b0ada0449f950b93279d381.zip |
Cosmetics. Silence gcc -Wall
Notes
Notes:
svn path=/head/; revision=3498
Diffstat (limited to 'sys/msdosfs/msdosfs_fat.c')
-rw-r--r-- | sys/msdosfs/msdosfs_fat.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/msdosfs/msdosfs_fat.c b/sys/msdosfs/msdosfs_fat.c index 9ab23a24d0ab..2e3829600e3d 100644 --- a/sys/msdosfs/msdosfs_fat.c +++ b/sys/msdosfs/msdosfs_fat.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_fat.c,v 1.1 1994/09/19 15:41:43 dfr Exp $ */ +/* $Id: msdosfs_fat.c,v 1.2 1994/09/27 20:42:46 phk Exp $ */ /* $NetBSD: msdosfs_fat.c,v 1.12 1994/08/21 18:44:04 ws Exp $ */ /*- @@ -310,8 +310,7 @@ updatefats(pmp, bp, fatbn) struct buf *bpn; #ifdef MSDOSFS_DEBUG - printf("updatefats(pmp %08x, bp %08x, fatbn %d)\n", - pmp, bp, fatbn); + printf("updatefats(pmp %p, bp %p, fatbn %ld)\n", pmp, bp, fatbn); #endif /* @@ -526,7 +525,7 @@ fatchain(pmp, start, count, fillwith) struct buf *bp; #ifdef MSDOSFS_DEBUG - printf("fatchain(pmp %08x, start %d, count %d, fillwith %d)\n", + printf("fatchain(pmp %p, start %ld, count %ld, fillwith %ld)\n", pmp, start, count, fillwith); #endif /* @@ -637,7 +636,7 @@ chainalloc(pmp, start, count, fillwith, retcluster, got) error = fatchain(pmp, start, count, fillwith); if (error == 0) { #ifdef MSDOSFS_DEBUG - printf("clusteralloc(): allocated cluster chain at %d (%d clusters)\n", + printf("clusteralloc(): allocated cluster chain at %ld (%ld clusters)\n", start, count); #endif if (retcluster) |