Skip to content

Commit de28c09

Browse files
committed
Corrected doSign variable name (was _doSign)
1 parent 56bc450 commit de28c09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/MySensors/MySensor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
#ifdef MY_SIGNING_FEATURE
2626
// Macros for manipulating signing requirement table
27-
#define DO_SIGN(node) (~_doSign[node>>3]&(1<<(node%8)))
28-
#define SET_SIGN(node) (_doSign[node>>3]&=~(1<<(node%8)))
29-
#define CLEAR_SIGN(node) (_doSign[node>>3]|=(1<<(node%8)))
27+
#define DO_SIGN(node) (~doSign[node>>3]&(1<<(node%8)))
28+
#define SET_SIGN(node) (doSign[node>>3]&=~(1<<(node%8)))
29+
#define CLEAR_SIGN(node) (doSign[node>>3]|=(1<<(node%8)))
3030
#endif
3131

3232
// Inline function and macros

0 commit comments

Comments
 (0)