summaryrefslogtreecommitdiff
path: root/usr.bin/fstat
diff options
context:
space:
mode:
authorAndriy Gapon <avg@FreeBSD.org>2017-06-10 20:38:52 +0000
committerAndriy Gapon <avg@FreeBSD.org>2017-06-10 20:38:52 +0000
commit40ea8d27de24a364c0c2c41fca92ae126af5f778 (patch)
tree120db991642f0b2d35804e7ee271bd84ac9567c0 /usr.bin/fstat
parente15b2a7854b77974f32d6a82faf31b0abf08655a (diff)
downloadsrc-test-40ea8d27de24a364c0c2c41fca92ae126af5f778.tar.gz
src-test-40ea8d27de24a364c0c2c41fca92ae126af5f778.zip
fstat: catch up with r318997 and use 64 bits to store fsid
Discussed with: kib
Notes
Notes: svn path=/head/; revision=319802
Diffstat (limited to 'usr.bin/fstat')
-rw-r--r--usr.bin/fstat/fstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c
index 7d0db3399a328..2292bc523a3dd 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;