Skip to content

Commit

Permalink
Format code according to conventions (qmk#12680)
Browse files Browse the repository at this point in the history
Co-authored-by: QMK Bot <[email protected]>
  • Loading branch information
2 people authored and nhongooi committed Dec 5, 2021
1 parent 9193cf4 commit 058a870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quantum/process_keycode/process_leader.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ void qk_leader_start(void);
extern uint8_t leader_sequence_size

#ifdef LEADER_NO_TIMEOUT
#define LEADER_DICTIONARY() if (leading && leader_sequence_size > 0 && timer_elapsed(leader_time) > LEADER_TIMEOUT)
# define LEADER_DICTIONARY() if (leading && leader_sequence_size > 0 && timer_elapsed(leader_time) > LEADER_TIMEOUT)
#else
#define LEADER_DICTIONARY() if (leading && timer_elapsed(leader_time) > LEADER_TIMEOUT)
# define LEADER_DICTIONARY() if (leading && timer_elapsed(leader_time) > LEADER_TIMEOUT)
#endif

#endif

0 comments on commit 058a870

Please sign in to comment.