Skip to content

Commit 05756e5

Browse files
committedMar 7, 2019
fix building on Mac
not sure if this is the right way to fix this seen here boostorg/process#55 (comment) and mostly here boostorg/process#55 (comment)
1 parent 41cc02f commit 05756e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎external/qt-unix-signals/sigwatch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void UnixSignalWatcherPrivate::watchForSignal(int signal)
108108
struct sigaction sigact;
109109
sigact.sa_handler = UnixSignalWatcherPrivate::signalHandler;
110110
sigact.sa_flags = 0;
111-
::sigemptyset(&sigact.sa_mask);
111+
sigemptyset(&sigact.sa_mask);
112112
sigact.sa_flags |= SA_RESTART;
113113
if (::sigaction(signal, &sigact, nullptr)) {
114114
qDebug() << "UnixSignalWatcher: sigaction: " << ::strerror(errno);

0 commit comments

Comments
 (0)
Please sign in to comment.