Skip to content

Commit

Permalink
nit: init array
Browse files Browse the repository at this point in the history
  • Loading branch information
slntopp committed Dec 20, 2024
1 parent 13f345f commit 2e86cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/os/connection/snapshot/volumemounter.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func (m *VolumeMounter) mountVolume(fsInfo *MountPartitionDto) error {
}

func sanitizeOptions(options []string) []string {
var sanitized []string
sanitized := make([]string, 0)
for _, opt := range options {
switch opt {
case "defaults", "x-systemd.automount":
Expand Down

0 comments on commit 2e86cd2

Please sign in to comment.