File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1515#define DMDUTIL_MAX_PATH_SIZE 256
1616#define DMDUTIL_MAX_TRANSITIONAL_FRAME_DURATION 25
1717
18+ #include < arpa/inet.h>
19+
1820#include < atomic>
1921#include < condition_variable>
2022#include < cstdint>
Original file line number Diff line number Diff line change @@ -284,7 +284,8 @@ void DMD::AddRGB24DMD(RGB24DMD* pRGB24DMD)
284284{
285285 m_rgb24DMDs.push_back (pRGB24DMD);
286286 Log (DMDUtil_LogLevel_INFO, " Added RGB24DMD" );
287- if (!m_pRGB24DMDThread) {
287+ if (!m_pRGB24DMDThread)
288+ {
288289 m_pRGB24DMDThread = new std::thread (&DMD::RGB24DMDThread, this );
289290 Log (DMDUtil_LogLevel_INFO, " RGB24DMDThread started" );
290291 }
Original file line number Diff line number Diff line change 1+ #include < arpa/inet.h>
2+
13#include < algorithm>
24#include < chrono>
35#include < iostream>
You can’t perform that action at this time.
0 commit comments