Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarBLG committed Aug 20, 2023
1 parent 9c23561 commit c1392a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions EVC/Euroradio/radio_connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ enum struct safe_radio_status
};
struct etcs_id
{
int type;
int id;
unsigned int type;
unsigned int id;
bool operator<(const struct etcs_id &o) const
{
return ((type<<24)|id) < ((o.type<<24)|o.id);
Expand Down
2 changes: 1 addition & 1 deletion EVC/Euroradio/tcp_cfm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ void tcp_cfm::data_received(std::string &&data)
}
if (header.PacketType == 2) {
uint32_t responder_id = (ale[0]<<24)|(ale[1]<<16)|(ale[2]<<8)|ale[3];
int type = responder_id>>24;
unsigned int type = responder_id>>24;
peer_address.id = {type, responder_id&16777215};
ale.erase(ale.begin(), ale.begin() + 4);
state = cfm_state::Connected;
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Sep 24 12:09:21 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit c1392a4

Please sign in to comment.