Skip to content

Commit

Permalink
#66: pick minimal changes of latest version from NMEA0183-AIS
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas committed Nov 13, 2024
1 parent 098b9ba commit 4504b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nmea2ktoais/NMEA0183AISMessages.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ bool SetAISClassBMessage18(tNMEA0183AISMsg &NMEA0183AISMsg, uint8_t MessageID, u
bool SetAISClassBMessage24PartA(tNMEA0183AISMsg &NMEA0183AISMsg, uint8_t MessageID, uint8_t Repeat, uint32_t UserID, char *Name) {

bool found = false;
for (int i = 0; i < vships.size(); i++) {
for (size_t i = 0; i < vships.size(); i++) {
if ( vships[i]->_userID == UserID ) {
found = true;
break;
Expand Down

0 comments on commit 4504b88

Please sign in to comment.