Skip to content

Commit

Permalink
Fixed a typo in a warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
totalspectrum committed Apr 22, 2024
1 parent 410ee75 commit 37012ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontends/common.c
Expand Up @@ -1262,7 +1262,7 @@ DoPropellerPostprocess(const char *fname, size_t eepromSize)
}

if (len+extralen > maxlen) {
WARNING(NULL,"output size with debugger (%d + %d = %d) exceeps maximum of %d by %d bytes", len, extralen, len+extralen, maxlen, (len+extralen)-maxlen);
WARNING(NULL,"output size with debugger (%d + %d = %d) exceeds maximum of %d by %d bytes", len, extralen, len+extralen, maxlen, (len+extralen)-maxlen);
}
len += extralen;

Expand Down

0 comments on commit 37012ad

Please sign in to comment.