svn commit: r193717 - in stable/7/sys: . boot/i386/libi386 contrib/pf dev/ath/ath_hal dev/cxgb

John Baldwin jhb at FreeBSD.org
Mon Jun 8 14:52:18 UTC 2009


Author: jhb
Date: Mon Jun  8 14:52:17 2009
New Revision: 193717
URL: http://svn.freebsd.org/changeset/base/193717

Log:
  MFC: Add a missing parameter when displaying GPT partitions with an unknown
  UUID.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/boot/i386/libi386/biosdisk.c
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/ath/ath_hal/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)

Modified: stable/7/sys/boot/i386/libi386/biosdisk.c
==============================================================================
--- stable/7/sys/boot/i386/libi386/biosdisk.c	Mon Jun  8 14:37:47 2009	(r193716)
+++ stable/7/sys/boot/i386/libi386/biosdisk.c	Mon Jun  8 14:52:17 2009	(r193717)
@@ -375,6 +375,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-all mailing list