summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-04-27 01:36:25 +0000
committerpfg <pfg@FreeBSD.org>2016-04-27 01:36:25 +0000
commitfd3ec7b9e67578d2f7caf1914853bd56c9a39ff7 (patch)
tree35fd8e0672e83d52b35197e2572b1d35b8f512f0
parent43b587f58af52deae750d9e67a9b77097e3fc1cd (diff)
downloadFreeBSD-src-fd3ec7b9e67578d2f7caf1914853bd56c9a39ff7.zip
FreeBSD-src-fd3ec7b9e67578d2f7caf1914853bd56c9a39ff7.tar.gz
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
-rw-r--r--sbin/fsck_ffs/suj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/suj.c b/sbin/fsck_ffs/suj.c
index c640124..58949c9 100644
--- a/sbin/fsck_ffs/suj.c
+++ b/sbin/fsck_ffs/suj.c
@@ -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
OpenPOWER on IntegriCloud