svn commit: r193229 - head/sys/boot/i386/libi386

John Baldwin jhb at FreeBSD.org
Mon Jun 1 14:20:14 UTC 2009


Author: jhb
Date: Mon Jun  1 14:20:13 2009
New Revision: 193229
URL: http://svn.freebsd.org/changeset/base/193229

Log:
  Add a missing parameter when displaying GPT partitions with an unknown
  UUID.
  
  Submitted by:	Pawel Worach  pawel.worach | gmail
  MFC after:	1 week

Modified:
  head/sys/boot/i386/libi386/biosdisk.c

Modified: head/sys/boot/i386/libi386/biosdisk.c
==============================================================================
--- head/sys/boot/i386/libi386/biosdisk.c	Mon Jun  1 13:13:47 2009	(r193228)
+++ head/sys/boot/i386/libi386/biosdisk.c	Mon Jun  1 14:20:13 2009	(r193229)
@@ -387,6 +387,7 @@ bd_printgptpart(struct open_disk *od, st
 	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,


More information about the svn-src-head mailing list