Skip to content

Commit

Permalink
Fix #229 (part 3): correct typo < for <<
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Mar 11, 2019
1 parent f3d0d39 commit 8dcd8c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lmic/lmic.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ static void reportEvent (ev_t ev) {
// tell the client about completed transmits -- the buffer
// is now available again. We use set notation again in case
// we later discover another event completes messages
if ((evSet & (1u<EV_TXCOMPLETE)) != 0) {
if ((evSet & (1u<<EV_TXCOMPLETE)) != 0) {
lmic_txmessage_cb_t * const pTxMessageCb = LMIC.txMessageCb;

if (pTxMessageCb != NULL) {
Expand Down

0 comments on commit 8dcd8c3

Please sign in to comment.