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
+1 -1
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) {