diff options
author | tb <> | 2018-09-18 01:05:37 +0000 |
---|---|---|
committer | tb <> | 2018-09-18 01:05:37 +0000 |
commit | 87d93471b67dca1bf6eb367c946d524b33e89a3a (patch) | |
tree | ca37112b32f00cd533474f9643ab44a1161b1d30 | |
parent | 9b91d506c3b8c2dd2259479f73a7455b805dc2ff (diff) | |
download | openbsd-87d93471b67dca1bf6eb367c946d524b33e89a3a.tar.gz openbsd-87d93471b67dca1bf6eb367c946d524b33e89a3a.tar.bz2 openbsd-87d93471b67dca1bf6eb367c946d524b33e89a3a.zip |
fix order of arguments in fmt.Printf()
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index 61ad17046e..f5747e9ecd 100644 --- a/src/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/src/regress/lib/libcrypto/wycheproof/wycheproof.go | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: wycheproof.go,v 1.56 2018/09/16 19:22:50 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.57 2018/09/18 01:05:37 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> |
@@ -551,7 +551,7 @@ func checkAesAead(algorithm string, ctx *C.EVP_CIPHER_CTX, doEncrypt int, key [] | |||
551 | } | 551 | } |
552 | 552 | ||
553 | if cipherOutLen != C.int(outLen) { | 553 | if cipherOutLen != C.int(outLen) { |
554 | fmt.Printf("FAIL: Test case %d (%q) [%v] - cipherOutLen %d != outLen %d. Result %v\n", wt.TCID, wt.Comment, cipherOutLen, action, outLen, wt.Result) | 554 | fmt.Printf("FAIL: Test case %d (%q) [%v] - cipherOutLen %d != outLen %d. Result %v\n", wt.TCID, wt.Comment, action, cipherOutLen, outLen, wt.Result) |
555 | return false | 555 | return false |
556 | } | 556 | } |
557 | 557 | ||