Skip to content

Commit 15cadd9

Browse files
committed
remove extra paren
1 parent 7244ef6 commit 15cadd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/httpfs/crypto.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const EVP_CIPHER *AESStateSSL::GetCipher(idx_t key_len) {
5252
case EncryptionTypes::CTR: {
5353
switch (key_len) {
5454
case 16:
55-
return EVP_aes_128_ctr()();
55+
return EVP_aes_128_ctr();
5656
case 24:
5757
return EVP_aes_192_ctr();
5858
case 32:

0 commit comments

Comments
 (0)