Skip to content

Commit

Permalink
Fix typo in patch
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Nov 22, 2024
1 parent d90d7b1 commit e11bd50
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 @@ -2608,7 +2608,7 @@ static void engineUpdate_inner (void) {
// otherwise the compiler falsely assumes that the computation
// is positive.
//
if( ((ostime_t) (txbeg - (now + TX_RAMPUP)) < 0 ) {
if( ((ostime_t) (txbeg - (now + TX_RAMPUP))) < 0 ) {
// We could send right now!
txbeg = now;
dr_t txdr = (dr_t)LMIC.datarate;
Expand Down

0 comments on commit e11bd50

Please sign in to comment.