Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/openlightingproject/ola i…
Browse files Browse the repository at this point in the history
…nto e1.33-controller
  • Loading branch information
peternewman committed Mar 16, 2024
2 parents 1a036f9 + e7b4039 commit 58a6cc2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup Node.js v18
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18 # LTS
cache: 'npm'
Expand Down
4 changes: 2 additions & 2 deletions libs/acn/LLRPHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class LLRPHeader {
uint32_t TransactionNumber() const { return m_transaction_number; }

bool operator==(const LLRPHeader &other) const {
return m_destination_cid == other.m_destination_cid &&
m_transaction_number == other.m_transaction_number;
return ((m_destination_cid == other.m_destination_cid) &&
(m_transaction_number == other.m_transaction_number));
}

PACK(
Expand Down
8 changes: 8 additions & 0 deletions libs/acn/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,14 @@ libs_acn_LLRPTester_LDADD = \
libs/acn/libolae131core.la \
$(COMMON_TESTING_LIBS)

libs_acn_LLRPTester_SOURCES = \
libs/acn/LLRPInflatorTest.cpp \
libs/acn/LLRPPDUTest.cpp
libs_acn_LLRPTester_CPPFLAGS = $(COMMON_TESTING_FLAGS)
libs_acn_LLRPTester_LDADD = \
libs/acn/libolae131core.la \
$(COMMON_TESTING_LIBS)

libs_acn_TransportTester_SOURCES = \
libs/acn/TCPTransportTest.cpp \
libs/acn/UDPTransportTest.cpp
Expand Down

0 comments on commit 58a6cc2

Please sign in to comment.