Unrelated warning fix

This commit is contained in:
Henrik Rydgård 2023-06-04 22:51:33 +02:00
parent 1ef1478cc8
commit 688042c036
2 changed files with 4 additions and 4 deletions

View file

@ -138,9 +138,8 @@ void SHAInit(SHA_CTX *shsInfo)
Note that this corrupts the shsInfo->data area */
static void SHSTransform( digest, data )
UINT4 *digest, *data ;
{
static void SHSTransform( UINT4 *digest, UINT4 *data )
{
UINT4 A, B, C, D, E; /* Local vars */
UINT4 eData[ 16 ]; /* Expanded data */

View file

@ -133,8 +133,9 @@ bool System_MakeRequest(SystemRequestType type, int requestId, const std::string
return true;
}
return false;
default:
return false;
}
return false;
}
void System_InputBoxGetString(const std::string &title, const std::string &defaultValue, std::function<void(bool, const std::string &)> cb) { cb(false, ""); }
void System_AskForPermission(SystemPermission permission) {}