File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
wled00/src/dependencies/e131 Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ void ESPAsyncE131::parsePacket(AsyncUDPPacket _packet) {
101101 bool error = false ;
102102 uint8_t protocol = P_E131;
103103
104- sbuff = reinterpret_cast <e131_packet_t *>(_packet.data ());
104+ e131_packet_t * sbuff = reinterpret_cast <e131_packet_t *>(_packet.data ());
105105
106106 // E1.31 packet identifier ("ACS-E1.17")
107107 if (memcmp (sbuff->acn_id , ESPAsyncE131::ACN_ID, sizeof (sbuff->acn_id )))
Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ class ESPAsyncE131 {
163163 static const uint32_t VECTOR_FRAME = 2 ;
164164 static const uint8_t VECTOR_DMP = 2 ;
165165
166- e131_packet_t *sbuff; // Pointer to scratch packet buffer
167166 AsyncUDP udp; // AsyncUDP
168167
169168 // Internal Initializers
You can’t perform that action at this time.
0 commit comments