Removes useless text from checksumtool output

This commit is contained in:
Linus Probert 2019-03-21 08:53:31 +01:00
parent cea891f87d
commit eceb241162
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ int main(int argc, char *argv[])
return -1;
}
printf("The checksum of %s is %#x\n", file, checksum_fp(fp));
printf("%#x\n", file, checksum_fp(fp));
return 0;
}