update ftok example

This commit is contained in:
hslam 2020-11-27 17:16:02 +08:00
parent e3bf32b2cf
commit a0c8cf24ad
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@ import (
) )
func main() { func main() {
key_t, err := ftok.Ftok("/tmp", 0x22) key, err := ftok.Ftok("/tmp", 0x22)
if err != nil { if err != nil {
return return
} }
fmt.Printf("%x", key_t) fmt.Printf("%x", key)
} }
``` ```