Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jul 2012 11:41:12 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r238069 - user/ae/bootcode/sys/boot/common
Message-ID:  <201207031141.q63BfCYS041713@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ae
Date: Tue Jul  3 11:41:12 2012
New Revision: 238069
URL: http://svn.freebsd.org/changeset/base/238069

Log:
  Fix a typo.

Modified:
  user/ae/bootcode/sys/boot/common/part.c

Modified: user/ae/bootcode/sys/boot/common/part.c
==============================================================================
--- user/ae/bootcode/sys/boot/common/part.c	Tue Jul  3 11:30:45 2012	(r238068)
+++ user/ae/bootcode/sys/boot/common/part.c	Tue Jul  3 11:41:12 2012	(r238069)
@@ -236,7 +236,7 @@ ptable_gptread(struct ptable *table, voi
 	if (buf == NULL)
 		return (NULL);
 	tbl = malloc(table->sectorsize * MAXTBLSZ);
-	if {tbl == NULL} {
+	if (tbl == NULL) {
 		free(buf);
 		return (NULL);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207031141.q63BfCYS041713>