Code cleanup from cli changes.

This commit is contained in:
Jacob Alexander 2015-04-07 22:11:04 -07:00
parent 5523988d04
commit 1db716ce53
2 changed files with 7 additions and 7 deletions

View file

@ -67,8 +67,8 @@
const char name##CLIDict_DescEntry[] = description;
#endif
#define RING_PREV(i) wrap(i-1,0,CLIMaxHistorySize-1)
#define RING_NEXT(i) wrap(i+1,0,CLIMaxHistorySize-1)
#define RING_PREV(i) CLI_wrap(i - 1, 0, CLIMaxHistorySize - 1)
#define RING_NEXT(i) CLI_wrap(i + 1, 0, CLIMaxHistorySize - 1)
// ----- Structs -----