Fix incorrect status constants in the AVRISP-MKII Clone project.

This commit is contained in:
Dean Camera 2013-11-20 20:20:22 +01:00
parent 32013ebffb
commit 8edd561948
2 changed files with 4 additions and 3 deletions

View file

@ -110,7 +110,7 @@ int main(void)
/* Check if the note is unused */
if (!(NoteData[i].Pitch))
{
/* If a note is unused, it's age is essentially infinite - always prefer unused not entries */
/* If a note is unused, it's age is essentially infinite - always prefer unused note entries */
LRUNoteStruct = &NoteData[i];
break;
}