fix: Narrowing conversion from long to int

This commit is contained in:
surtur 2021-10-19 15:26:54 +02:00
parent 1d554354a4
commit 208e7d3cea
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -17,7 +17,7 @@ G_state *initialize_generator(){
return G;
};
string do_crypto(int k, int c){
string do_crypto(long k, long c){
/* this function calls the block cipher
do whatever atm */
k = 0;