Created
November 30, 2016 19:13
-
-
Save linknum23/b39c17698bd9a00c88bb9cde8e83054d to your computer and use it in GitHub Desktop.
Bugs to Remember
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void unsignedReverseIteration(){ | |
unsigned int chan; | |
// for some odd reason you decide to reverse iterate | |
for(chan=31; chan >= 0 ; chan--){ | |
// logic, that executes forever in a loop, because chan is never less than 0 | |
} | |
// code doesn't ever get here! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment