Engine: tiny cosmetic fix

To make @creack happy :)

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
Upstream-commit: 0469e7d0622add573f2f9c357564ff0076db9346
Component: engine
This commit is contained in:
Solomon Hykes
2014-02-24 12:31:39 -08:00
parent 0070aebcd1
commit 1560c87c83
+1 -1
View File
@@ -37,7 +37,7 @@ func (env *Env) Exists(key string) bool {
}
func (env *Env) Init(src *Env) {
*env = make([]string, 0, len(*src))
(*env) = make([]string, 0, len(*src))
for _, val := range *src {
(*env) = append((*env), val)
}