summaryrefslogtreecommitdiff
path: root/ufs/hyper.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-12-20 20:51:02 +0000
committerRoland McGrath <roland@gnu.org>1998-12-20 20:51:02 +0000
commit48148f260858f75ce36c2dca8f85819619d6a847 (patch)
tree6605215d2b01a14d7256937fce3d8d8af4b383d9 /ufs/hyper.c
parentcec2b851bfc8a4cf6a28769ebd278e155f3ce9ab (diff)
1998-12-20 Roland McGrath <roland@baalperazim.frob.com>
* alloc.c (diskfs_alloc_node): Fix printf format to silence warning. * hyper.c (get_hypermetadata): Likewise.
Diffstat (limited to 'ufs/hyper.c')
-rw-r--r--ufs/hyper.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ufs/hyper.c b/ufs/hyper.c
index 500934eb..2a43bfed 100644
--- a/ufs/hyper.c
+++ b/ufs/hyper.c
@@ -1,5 +1,5 @@
/* Fetching and storing the hypermetadata (superblock and cg summary info).
- Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation
+ Copyright (C) 1994, 95, 96, 97, 98 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -34,7 +34,7 @@ void
swab_sblock (struct fs *sblock)
{
int i, j;
-
+
sblock->fs_sblkno = swab_long (sblock->fs_sblkno);
sblock->fs_cblkno = swab_long (sblock->fs_cblkno);
sblock->fs_iblkno = swab_long (sblock->fs_iblkno);
@@ -108,24 +108,24 @@ swab_sblock (struct fs *sblock)
else
for (i = 0; i < sblock->fs_cpc; i++)
for (j = 0; j < sblock->fs_nrpos; j++)
- fs_postbl(sblock, j)[i]
+ fs_postbl(sblock, j)[i]
= swab_short (fs_postbl (sblock, j)[i]);
/* The rot table is all chars */
}
-
+
void
swab_csums (struct csum *csum)
{
int i;
-
+
for (i = 0; i < sblock->fs_ncg; i++)
{
csum[i].cs_ndir = swab_long (csum[i].cs_ndir);
csum[i].cs_nbfree = swab_long (csum[i].cs_nbfree);
csum[i].cs_nifree = swab_long (csum[i].cs_nifree);
csum[i].cs_nffree = swab_long (csum[i].cs_nffree);
- }
+ }
}
void
@@ -252,7 +252,7 @@ get_hypermetadata (void)
if (store->size < sblock->fs_size * sblock->fs_fsize)
{
fprintf (stderr,
- "Disk size (%Zd) less than necessary "
+ "Disk size (%ld) less than necessary "
"(superblock says we need %ld)\n",
store->size, sblock->fs_size * sblock->fs_fsize);
exit (1);
@@ -315,7 +315,7 @@ diskfs_set_hypermetadata (int wait, int clean)
}
vm_deallocate (mach_task_self (), (vm_address_t)buf, read);
-
+
if (err)
{
spin_unlock (&alloclock);