Replaced single line comment w/ block

This commit is contained in:
Gitea 2020-12-01 20:32:46 -06:00
parent 75632e656a
commit d392abebc7
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ int main(int argc, char ** argv) {
return 0;
}
//Based off CRC-32 on the Wikipedia article for CRC
/* Based off the CRC-32 psuedocode implementation on the Wikipedia article for CRC */
unsigned int crc32(FILE * in_file) {
unsigned int crc = 0xffffffff;
int nLookupIndex;