summaryrefslogtreecommitdiffstats
path: root/sbin/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-06-28 20:48:03 +0000
committerbde <bde@FreeBSD.org>1998-06-28 20:48:03 +0000
commit31e25f7859a405b6f755c1ba1ccce919fcfd5a3f (patch)
treeef454186c91d9bdf72551e59fd7913f35f8d1029 /sbin/i386
parent76120f12e571cecbe542cf6b4f6fd242b66c4a43 (diff)
downloadFreeBSD-src-31e25f7859a405b6f755c1ba1ccce919fcfd5a3f.zip
FreeBSD-src-31e25f7859a405b6f755c1ba1ccce919fcfd5a3f.tar.gz
Fixed printf format errors.
Diffstat (limited to 'sbin/i386')
-rw-r--r--sbin/i386/fdisk/fdisk.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sbin/i386/fdisk/fdisk.c b/sbin/i386/fdisk/fdisk.c
index 1a0fc1c..c8b1a82 100644
--- a/sbin/i386/fdisk/fdisk.c
+++ b/sbin/i386/fdisk/fdisk.c
@@ -449,9 +449,9 @@ print_part(int i)
part_mb *= secsize;
part_mb /= (1024 * 1024);
printf("sysid %d,(%s)\n", partp->dp_typ, get_type(partp->dp_typ));
- printf(" start %ld, size %ld (%qd Meg), flag %x%s\n",
- partp->dp_start,
- partp->dp_size,
+ printf(" start %lu, size %lu (%qd Meg), flag %x%s\n",
+ (u_long)partp->dp_start,
+ (u_long)partp->dp_size,
part_mb,
partp->dp_flag,
partp->dp_flag == ACTIVE ? " (active)" : "");
@@ -1144,9 +1144,9 @@ process_partition(command)
break;
}
fprintf(stderr,
- "%s: WARNING: adjusting start offset of partition '%d' from %d\n\
- to %d, to round to an head boundary.\n",
- name, partition, partp->dp_start, adj_size);
+ "%s: WARNING: adjusting start offset of partition '%d' from %lu\n\
+ to %lu, to round to an head boundary.\n",
+ name, partition, (u_long)partp->dp_start, adj_size);
partp->dp_start = adj_size;
}
@@ -1160,9 +1160,9 @@ process_partition(command)
if (adj_size != partp->dp_size)
{
fprintf(stderr,
- "%s: WARNING: adjusting size of partition '%d' from %d to %d,\n\
+ "%s: WARNING: adjusting size of partition '%d' from %lu to %lu,\n\
to round to a cylinder boundary.\n",
- name, partition, partp->dp_size, adj_size);
+ name, partition, (u_long)partp->dp_size, adj_size);
if (chunks > 0)
{
partp->dp_size = adj_size;
OpenPOWER on IntegriCloud