Code cleanup from cli changes.
This commit is contained in:
parent
5523988d04
commit
1db716ce53
2 changed files with 7 additions and 7 deletions
|
@ -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 -----
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue