fixed print of hash

This commit is contained in:
Aéna Aria 2026-02-26 11:50:40 +01:00
parent b53b4144d0
commit 649b9af022

View file

@ -455,7 +455,7 @@ void fake_exit(char* msg){
void print_hash(unsigned char hash [32]){
for(int i = 0; i < 32; i++){
printf("%x",hash[i]);
printf("0x%x, ",hash[i]);
}
printf("\n");
}