mirror of https://github.com/docker/cli.git
linting: assigned to src, but reassigned without using the value (wastedassign)
cli/command/container/opts.go:928:2: assigned to src, but reassigned without using the value (wastedassign) src := "" ^ Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
98654202c2
commit
3dfdaa6458
|
@ -925,8 +925,7 @@ func parseDevice(device, serverOS string) (container.DeviceMapping, error) {
|
||||||
// parseLinuxDevice parses a device mapping string to a container.DeviceMapping struct
|
// parseLinuxDevice parses a device mapping string to a container.DeviceMapping struct
|
||||||
// knowing that the target is a Linux daemon
|
// knowing that the target is a Linux daemon
|
||||||
func parseLinuxDevice(device string) (container.DeviceMapping, error) {
|
func parseLinuxDevice(device string) (container.DeviceMapping, error) {
|
||||||
src := ""
|
var src, dst string
|
||||||
dst := ""
|
|
||||||
permissions := "rwm"
|
permissions := "rwm"
|
||||||
arr := strings.Split(device, ":")
|
arr := strings.Split(device, ":")
|
||||||
switch len(arr) {
|
switch len(arr) {
|
||||||
|
|
Loading…
Reference in New Issue