Skip to content

Commit

Permalink
harness: correct include and sort
Browse files Browse the repository at this point in the history
warning redirecting incorrect #include <sys/errno.h> to <errno.h>

Signed-off-by: David Heidelberg <[email protected]>
  • Loading branch information
okias committed Mar 9, 2024
1 parent c533c1f commit 9ae0f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_common/harness/ThreadPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
#include "mingw_compat.h"
#include <process.h>
#else // !_WIN32
#include <errno.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/errno.h>
#ifdef __linux__
#include <sched.h>
#endif
Expand Down

0 comments on commit 9ae0f69

Please sign in to comment.