1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Engine: tiny cosmetic fix

To make @creack happy :)

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
Solomon Hykes 2014-02-24 12:08:37 -08:00
parent d985fd4984
commit 0469e7d062

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)
}