Skip to content

Commit

Permalink
Corrected doSign variable name (was _doSign)
Browse files Browse the repository at this point in the history
  • Loading branch information
fallberg committed Jan 20, 2016
1 parent 56bc450 commit de28c09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/MySensors/MySensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

#ifdef MY_SIGNING_FEATURE
// Macros for manipulating signing requirement table
#define DO_SIGN(node) (~_doSign[node>>3]&(1<<(node%8)))
#define SET_SIGN(node) (_doSign[node>>3]&=~(1<<(node%8)))
#define CLEAR_SIGN(node) (_doSign[node>>3]|=(1<<(node%8)))
#define DO_SIGN(node) (~doSign[node>>3]&(1<<(node%8)))
#define SET_SIGN(node) (doSign[node>>3]&=~(1<<(node%8)))
#define CLEAR_SIGN(node) (doSign[node>>3]|=(1<<(node%8)))
#endif

// Inline function and macros
Expand Down

0 comments on commit de28c09

Please sign in to comment.