We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bf652b commit 190b3abCopy full SHA for 190b3ab
application.c
@@ -650,7 +650,7 @@ uint16_t i=0;
650
return sizeof(head); // sizeof(text)-1 should be right ... but doesn't work? TODO
651
}
652
// ----------------------------------------------------------------------------------
653
-uint8_t ringBufferCompare(uint8_t ptr,char * c1,uint8_t len) { // Respects ring
+uint8_t ringBufferCompare(uint8_t ptr,const char * c1,uint8_t len) { // Respects ring
654
while (len--) {
655
if (ringBuffer[ptr]!=*(c1++)) return TRUE;
656
ptr=(ptr+1)%MAX_RING_BUFFER;
0 commit comments