Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Jun 2017 20:38:52 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r319802 - head/usr.bin/fstat
Message-ID:  <201706102038.v5AKcqJw065852@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Sat Jun 10 20:38:52 2017
New Revision: 319802
URL: https://svnweb.freebsd.org/changeset/base/319802

Log:
  fstat: catch up with r318997 and use 64 bits to store fsid
  
  Discussed with:	kib

Modified:
  head/usr.bin/fstat/fstat.c

Modified: head/usr.bin/fstat/fstat.c
==============================================================================
--- head/usr.bin/fstat/fstat.c	Sat Jun 10 20:23:49 2017	(r319801)
+++ head/usr.bin/fstat/fstat.c	Sat Jun 10 20:38:52 2017	(r319802)
@@ -67,7 +67,7 @@ static int	vflg;	/* be verbose */
 
 typedef struct devs {
 	struct devs	*next;
-	uint32_t	fsid;
+	uint64_t	fsid;
 	uint64_t	ino;
 	const char	*name;
 } DEVS;



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