diff options
author | Nikolaus Klepp <[email protected]> | 2015-05-05 21:47:07 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-05-05 21:47:55 +0200 |
commit | c23ca441d8c20c4b781b67148554428977034bce (patch) | |
tree | 331e0649b5e62bf1e08d379d9977a5bea19e837e /mcop_mt/threads_posix.cc | |
parent | aed034d05d59f95e9208d1670b398b0973ee59f0 (diff) | |
download | arts-c23ca441d8c20c4b781b67148554428977034bce.tar.gz arts-c23ca441d8c20c4b781b67148554428977034bce.zip |
Fix FTBFS on freebsd
This resolves Bug 2428
Signed-off-by: Nikolaus Klepp <[email protected]>
(cherry picked from commit 31a6127eecfb7d905939734091f6a7b6379ffc75)
Diffstat (limited to 'mcop_mt/threads_posix.cc')
-rw-r--r-- | mcop_mt/threads_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mcop_mt/threads_posix.cc b/mcop_mt/threads_posix.cc index 0a884f9..0ec24a5 100644 --- a/mcop_mt/threads_posix.cc +++ b/mcop_mt/threads_posix.cc @@ -358,7 +358,7 @@ static void pth_rec_cond_init (GslCond *cond) static void pth_rec_cond_wait_timed (GslCond *cond, GslMutex *mutex, gulong abs_secs, gulong abs_usecs) { - struct timespec abstime; + struct ::timespec abstime; abstime.tv_sec = abs_secs; abstime.tv_nsec = abs_usecs * 1000; |