disk[freebsd]: fix typo.

This commit is contained in:
WAKAYAMA shirou 2015-09-03 09:49:48 +09:00
parent af29b38440
commit 6365c902e7
1 changed files with 1 additions and 1 deletions

View File

@ -172,6 +172,6 @@ func parseDevstat(buf []byte) (Devstat, error) {
return ds, nil
}
func getFType(stat syscall.Statfs_t) string {
func getFsType(stat syscall.Statfs_t) string {
return common.IntToString(stat.Fstypename[:])
}