🎨 Fix typo in error message
This commit is contained in:
parent
a09c846a81
commit
d6cb0831fb
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue