From d392abebc747aaff2ce661f57722dd89a573c630 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 1 Dec 2020 20:32:46 -0600 Subject: [PATCH] Replaced single line comment w/ block --- cksum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cksum.c b/cksum.c index edee16f..5c40a93 100755 --- a/cksum.c +++ b/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;