Merge pull request #698 from ggaaooppeenngg/gaopeng/format-errorf
Use %v for map structure format
This commit is contained in:
commit
857d418b09
|
@ -326,7 +326,7 @@ func RemovePaths(paths map[string]string) (err error) {
|
|||
return nil
|
||||
}
|
||||
}
|
||||
return fmt.Errorf("Failed to remove paths: %s", paths)
|
||||
return fmt.Errorf("Failed to remove paths: %v", paths)
|
||||
}
|
||||
|
||||
func GetHugePageSize() ([]string, error) {
|
||||
|
|
Loading…
Reference in New Issue