From e11bd5047737ec7c7ff26a49cacab7802dec9a91 Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Thu, 21 Nov 2024 23:54:58 -0500 Subject: [PATCH] Fix typo in patch --- src/lmic/lmic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lmic/lmic.c b/src/lmic/lmic.c index 46fa1a50..6323fdb6 100644 --- a/src/lmic/lmic.c +++ b/src/lmic/lmic.c @@ -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;