Merge pull request #698 from ggaaooppeenngg/gaopeng/format-errorf

Use %v for map structure format
This commit is contained in:
Mrunal Patel 2016-03-28 09:28:28 -07:00
commit 857d418b09
1 changed files with 1 additions and 1 deletions

View File

@ -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) {