add missed error handling in inode to path example

This commit is contained in:
Ben McClelland
2018-12-03 11:09:37 -08:00
parent d02558b3a6
commit 67c8c3f967

View File

@@ -33,5 +33,9 @@ func main() {
}
s, err := scoutfs.InoToPath(f, u)
if err != nil {
log.Fatalln("error inode to path:", err)
}
fmt.Println(s)
}