Skip to content

Commit

Permalink
[FAB-7763] fixed go fmt spacing
Browse files Browse the repository at this point in the history
Change-Id: I2bb553891b71bf7874c011cd0d6bfedcb482ee5b
Signed-off-by: Baha Shaaban <baha.shaaban@securekey.com>
  • Loading branch information
Baha Shaaban committed Jan 22, 2018
1 parent 94ac20c commit 6d35bfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/_go/src/pkcs11helper/cmd/pkcs11helper/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"strings"

pw "pkcs11helper/pkg/pkcs11wrapper"

"github.com/miekg/pkcs11"
)

Expand Down Expand Up @@ -42,7 +43,7 @@ func main() {

if *pkcs11Library == "" {
// if no lib is specified, just try to find libsofthsm2.so
p11Lib, err = searchForLib(strings.Join(defaultPkcs11LibPaths,","))
p11Lib, err = searchForLib(strings.Join(defaultPkcs11LibPaths, ","))
exitWhenError(err)
} else {
p11Lib, err = searchForLib(*pkcs11Library)
Expand Down

0 comments on commit 6d35bfc

Please sign in to comment.