Skip to content

Commit

Permalink
Fix compilation warning reported by gcc 5.3.1
Browse files Browse the repository at this point in the history
Change-Id: I18258bf9f3ebb4d439c3b0126852f72506ecf124
Signed-off-by: Steve Linsell <stevenx.linsell@intel.com>
  • Loading branch information
lugong authored and stevelinsell committed May 30, 2017
1 parent 093ed27 commit a4aaefc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qat_rsa_crt.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ CRT_combine(CpaFlatBuffer *crt_out1, CpaFlatBuffer *crt_out2, int rsa_len,
return ret;
}

inline int
int
qat_rsa_decrypt_CRT(CpaCyRsaDecryptOpData * dec_op_data, int rsa_len,
CpaFlatBuffer * output_buf)
{
Expand Down
2 changes: 1 addition & 1 deletion qat_rsa_crt.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

void qat_rsaCallbackFn_CRT(void *pCallbackTag, CpaStatus status,
void *pOpData, CpaFlatBuffer * pOut);
inline int qat_rsa_decrypt_CRT(CpaCyRsaDecryptOpData * dec_op_data,
int qat_rsa_decrypt_CRT(CpaCyRsaDecryptOpData * dec_op_data,
int rsa_len, CpaFlatBuffer * output_buf);

#endif /* QAT_RSA_CRT_H */

0 comments on commit a4aaefc

Please sign in to comment.