Skip to content

Commit 95dbfc9

Browse files
committed
Issue #1250 - Fixed for loop variable type
1 parent bc2f3bc commit 95dbfc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/apps/LoRaMac/common/LmHandler/packages/FragDecoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ static void FragGetParityMatrixRow( int32_t n, int32_t m, uint8_t *matrixRow )
589589
}
590590

591591
x = 1 + ( 1001 * n );
592-
for( uint16_t i = 0; i < ( ( m >> 3 ) + 1 ); i++ )
592+
for( int32_t i = 0; i < ( ( m >> 3 ) + 1 ); i++ )
593593
{
594594
matrixRow[i] = 0;
595595
}

0 commit comments

Comments
 (0)