svn commit: r319802 - head/usr.bin/fstat

Andriy Gapon avg at FreeBSD.org
Sat Jun 10 20:38:53 UTC 2017


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;


More information about the svn-src-all mailing list