fix: remove warning..

This commit is contained in:
iceman1001 2018-02-02 17:32:02 +01:00
parent 07d7b9424c
commit c025e38d91

View file

@ -546,8 +546,9 @@ int bruteforceFile(const char *filename, uint16_t keytable[]) {
if (f) fclose(f); if (f) fclose(f);
if (bytes_read < fsize) if (bytes_read < fsize) {
prnlog("[!] Error, could only read %d bytes (should be %d)", bytes_read, fsize ); prnlog("[!] Error, could only read %d bytes (should be %d)", bytes_read, fsize );
}
uint8_t res = bruteforceDump(dump, fsize, keytable); uint8_t res = bruteforceDump(dump, fsize, keytable);
free(dump); free(dump);