Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Apr 2016 06:14:31 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r298391 - head/sbin/fdisk_pc98
Message-ID:  <201604210614.u3L6EVwd053223@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: araujo
Date: Thu Apr 21 06:14:30 2016
New Revision: 298391
URL: https://svnweb.freebsd.org/changeset/base/298391

Log:
  Fix a missing blank space.

Modified:
  head/sbin/fdisk_pc98/fdisk.c

Modified: head/sbin/fdisk_pc98/fdisk.c
==============================================================================
--- head/sbin/fdisk_pc98/fdisk.c	Thu Apr 21 06:11:24 2016	(r298390)
+++ head/sbin/fdisk_pc98/fdisk.c	Thu Apr 21 06:14:30 2016	(r298391)
@@ -857,7 +857,7 @@ get_type(int type)
 	size_t i;
 
 	for (i = 0; i < nitems(part_types); i++)
-		if(part_types[i].type == (type & 0x7f))
+		if (part_types[i].type == (type & 0x7f))
 			return(part_types[i].name);
 	return("unknown");
 }



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