Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Apr 2016 01:36:26 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r298680 - head/sbin/fsck_ffs
Message-ID:  <201604270136.u3R1aQGF030408@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Wed Apr 27 01:36:25 2016
New Revision: 298680
URL: https://svnweb.freebsd.org/changeset/base/298680

Log:
  fsck_ffs: Revert partially the unsigned changes.
  
  Any value of uint16_t will be internally promoted to int so
  changing them to an unsigned value doesn't help.
  
  Missing revert value in suj_read().
  
  X-MFC with:	r298551

Modified:
  head/sbin/fsck_ffs/suj.c

Modified: head/sbin/fsck_ffs/suj.c
==============================================================================
--- head/sbin/fsck_ffs/suj.c	Wed Apr 27 01:32:11 2016	(r298679)
+++ head/sbin/fsck_ffs/suj.c	Wed Apr 27 01:36:25 2016	(r298680)
@@ -2543,7 +2543,7 @@ suj_read(void)
 	int blocks;
 	int recsize;
 	int size;
-	u_int i;
+	int i;
 
 	/*
 	 * Read records until we exhaust the journal space.  If we find



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