From 488237a24e8ae3b1a82015dd7a7b88f4609d65ef Mon Sep 17 00:00:00 2001 From: Krzysztof Jackiewicz Date: Thu, 9 Jul 2015 15:18:01 +0200 Subject: [PATCH] Remove unnecessary argument names in function typedef [Problem] Unnecessary argument names in function typedef [Solution] Names removed [Verification] Successfull compilation Change-Id: I32255580b6b9e9c386493adb94f50e2f77b48661 --- src/manager/client-capi/ckmc-manager.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/manager/client-capi/ckmc-manager.cpp b/src/manager/client-capi/ckmc-manager.cpp index d971943..0fe3b94 100644 --- a/src/manager/client-capi/ckmc-manager.cpp +++ b/src/manager/client-capi/ckmc-manager.cpp @@ -117,11 +117,11 @@ ckmc_cert_list_s *_toNewCkmCertList(const CKM::CertificateShPtrVector &certVecto return start; } -typedef int (CKM::Manager::*cryptoFn)(const CKM::CryptoAlgorithm &algo, - const CKM::Alias &keyAlias, - const CKM::Password &password, - const CKM::RawBuffer& plain, - CKM::RawBuffer& encrypted); +typedef int (CKM::Manager::*cryptoFn)(const CKM::CryptoAlgorithm&, + const CKM::Alias&, + const CKM::Password&, + const CKM::RawBuffer&, + CKM::RawBuffer&); int _cryptoOperation(cryptoFn operation, const ckmc_param_list_s *params, -- 2.7.4