Skip to content

Commit ba7fca3

Browse files
committed
fix typo in pthread_mutex_t placeholder struct definition (fix macos compilation)
1 parent 02024e6 commit ba7fca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librawspeed/common/Threading.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ template <typename T>
4646
class ThreadSafeVector : protected std::vector<T>
4747
{
4848
#ifndef HAVE_PTHREAD
49-
struct pthread_mutext_t;
49+
struct pthread_mutex_t {};
5050
#endif
5151

5252
// use a pimpl idiom here to make sure the stack size of this class is the

0 commit comments

Comments
 (0)