🎨 Fix typo in error message

This commit is contained in:
C-3PO 2018-10-07 19:35:14 +02:00
parent a09c846a81
commit d6cb0831fb
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -58,7 +58,7 @@ void getBytes(uint8_t* buffer, unsigned long numBytes, bool isLast) {
if (!isLast) { if (!isLast) {
openNextFile(); openNextFile();
} else if (remainingBytes > 0) { } 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(); errorAndExit();
} }
} }