Skip to content

Commit 569dba0

Browse files
matthijskooijmanfpistm
authored andcommitted
LoraSendAndReceive: Fix signed vs unsigned warning
1 parent d04274d commit 569dba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/LoraSendAndReceive/LoraSendAndReceive.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void loop()
7474
return;
7575
}
7676
char rcv[64];
77-
int i = 0;
77+
unsigned int i = 0;
7878
while (modem.available()) {
7979
rcv[i++] = (char)modem.read();
8080
}

0 commit comments

Comments
 (0)