aboutsummaryrefslogtreecommitdiff
path: root/sys/boot
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2009-06-01 14:20:13 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2009-06-01 14:20:13 +0000
commit4fdf20550c894261f0b66ab6a50b74d33ca1ea7f (patch)
tree8147c2679d5469b9b44d03d0d02f7a7cc435a9e7 /sys/boot
parentba98ce6badd28a817e2dec2f634aab0ea041e5bf (diff)
downloadsrc-4fdf20550c894261f0b66ab6a50b74d33ca1ea7f.tar.gz
src-4fdf20550c894261f0b66ab6a50b74d33ca1ea7f.zip
Add a missing parameter when displaying GPT partitions with an unknown
UUID. Submitted by: Pawel Worach pawel.worach | gmail MFC after: 1 week
Notes
Notes: svn path=/head/; revision=193229
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/i386/libi386/biosdisk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/boot/i386/libi386/biosdisk.c b/sys/boot/i386/libi386/biosdisk.c
index f84c515b2ca1..84b58d6c555c 100644
--- a/sys/boot/i386/libi386/biosdisk.c
+++ b/sys/boot/i386/libi386/biosdisk.c
@@ -387,6 +387,7 @@ bd_printgptpart(struct open_disk *od, struct gpt_part *gp, char *prefix,
sprintf(line, "%s: FreeBSD swap%s\n", prefix, stats);
else
sprintf(line, "%s: %08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x%s\n",
+ prefix,
gp->gp_type.time_low, gp->gp_type.time_mid,
gp->gp_type.time_hi_and_version,
gp->gp_type.clock_seq_hi_and_reserved, gp->gp_type.clock_seq_low,