From a781d77d8dc7d686d49f5f629a5215126eee5982 Mon Sep 17 00:00:00 2001 From: Pin Date: Mon, 11 Oct 2021 23:07:14 -0400 Subject: [PATCH] Giving Robert Credit --- cmd/crc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/crc.c b/cmd/crc.c index 435a44d..dab6025 100644 --- a/cmd/crc.c +++ b/cmd/crc.c @@ -175,9 +175,11 @@ int main() { } fp = fopen("./1.png", "rt"); + // Written by Robert Zambito if (fp == NULL) { return EXIT_FAILURE; } + // No longer written by Robert Zambito unsigned char *file_data = file_to_char_array(fp, &i); fclose(fp);