diff options
author | 2018-09-18 01:05:37 +0000 | |
---|---|---|
committer | 2018-09-18 01:05:37 +0000 | |
commit | bb0ee60ffa0d95cec11433a39b5759b35f6abfc4 (patch) | |
tree | 567dde8ed1d5b7b74f52bb193536fbed68c52c76 | |
parent | Simplify initialization of asn1_cb; use correct spelling of NULL. (diff) | |
download | wireguard-openbsd-bb0ee60ffa0d95cec11433a39b5759b35f6abfc4.tar.xz wireguard-openbsd-bb0ee60ffa0d95cec11433a39b5759b35f6abfc4.zip |
fix order of arguments in fmt.Printf()
-rw-r--r-- | regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go index 61ad17046e6..f5747e9ecd2 100644 --- a/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.56 2018/09/16 19:22:50 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.57 2018/09/18 01:05:37 tb Exp $ */ /* * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> @@ -551,7 +551,7 @@ func checkAesAead(algorithm string, ctx *C.EVP_CIPHER_CTX, doEncrypt int, key [] } if cipherOutLen != C.int(outLen) { - fmt.Printf("FAIL: Test case %d (%q) [%v] - cipherOutLen %d != outLen %d. Result %v\n", wt.TCID, wt.Comment, cipherOutLen, action, outLen, wt.Result) + fmt.Printf("FAIL: Test case %d (%q) [%v] - cipherOutLen %d != outLen %d. Result %v\n", wt.TCID, wt.Comment, action, cipherOutLen, outLen, wt.Result) return false } |