Skip to content

Commit

Permalink
ex: dockergc: fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sjenning committed Dec 11, 2017
1 parent bcb8d75 commit cffdd1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/oc/experimental/dockergc/dockergc.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
fmt.Printf("removing image %v (size: %v, age: %v)\n", i.ID, i.Size, age)
_, err := client.ImageRemove(ctx, i.ID, dockertypes.ImageRemoveOptions{PruneChildren: true})
if err != nil {
fmt.Printf("unable to remove container: %v", err)
fmt.Printf("unable to remove image: %v", err)
} else {
freedBytes += i.Size
}
Expand Down

0 comments on commit cffdd1e

Please sign in to comment.