From 40ea8d27de24a364c0c2c41fca92ae126af5f778 Mon Sep 17 00:00:00 2001 From: Andriy Gapon Date: Sat, 10 Jun 2017 20:38:52 +0000 Subject: [PATCH] fstat: catch up with r318997 and use 64 bits to store fsid Discussed with: kib --- usr.bin/fstat/fstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index 7d0db3399a32..2292bc523a3d 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -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;