Fix possible unused variable warning.

This commit is contained in:
David Garske
2023-12-11 09:22:47 -08:00
parent 8a5a467543
commit b5eb8995c9

View File

@ -1499,6 +1499,7 @@ int wc_InitSha256_ex(wc_Sha256* sha256, void* heap, int devId)
#ifdef WOLF_CRYPTO_CB
sha256->devId = devId;
#endif
(void)devId;
return InitSha256(sha256);
}