Skip to content
Snippets Groups Projects
Commit 1e492fb3 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix GCC 12.2 warnings

warning: ‘checkStamp’ accessing 20 bytes in a region of size 11
etc.
parent 64eb14fa
No related branches found
No related tags found
No related merge requests found
......@@ -1152,7 +1152,7 @@ readSmallMenu(unsigned char *codeStr)
}
static void
checkStamp(int xx, int yy, char stampStr[20]) // used w/ incomingCheck
checkStamp(int xx, int yy, char stampStr[]) // used w/ incomingCheck
{
term_gotoxy(xx + 1, yy + 1);
term_setattr(LIGHTCYAN);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment