Replaced single line comment w/ block
This commit is contained in:
parent
75632e656a
commit
d392abebc7
1 changed files with 1 additions and 1 deletions
2
cksum.c
2
cksum.c
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue