From d6cb0831fba9e7acf08be230ad249b9de79add16 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Sun, 7 Oct 2018 19:35:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20typo=20in=20error=20messag?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fileReader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileReader.c b/src/fileReader.c index 9557bf7..ef6560b 100644 --- a/src/fileReader.c +++ b/src/fileReader.c @@ -58,7 +58,7 @@ void getBytes(uint8_t* buffer, unsigned long numBytes, bool isLast) { if (!isLast) { openNextFile(); } else if (remainingBytes > 0) { - fprintf(stderr, "Reached end of last disk but had to read %lu more bytes.\n", remainingBytes); + fprintf(stderr, "Reached end of last disk but have to read %lu more bytes.\n", remainingBytes); errorAndExit(); } }