Skip to content

Commit

Permalink
More fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
markfeit committed Dec 4, 2021
1 parent 041ba94 commit 1661cae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/duplicacy_swiftstorage.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
type SwiftStorage struct {
StorageBase

ctx *context.Context
ctx context.Context
connection *swift.Connection
container string
storageDir string
Expand Down Expand Up @@ -144,7 +144,7 @@ func CreateSwiftStorage(storageURL string, key string, threads int) (storage *Sw
}

storage = &SwiftStorage{
context: &ctx,
ctx: ctx,
connection: &connection,
container: container,
storageDir: storageDir,
Expand Down

0 comments on commit 1661cae

Please sign in to comment.