Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
3nids committed Mar 7, 2019
1 parent 41cc02f commit 05756e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/qt-unix-signals/sigwatch.cpp
Expand Up @@ -108,7 +108,7 @@ void UnixSignalWatcherPrivate::watchForSignal(int signal)
struct sigaction sigact;
sigact.sa_handler = UnixSignalWatcherPrivate::signalHandler;
sigact.sa_flags = 0;
::sigemptyset(&sigact.sa_mask);
sigemptyset(&sigact.sa_mask);
sigact.sa_flags |= SA_RESTART;
if (::sigaction(signal, &sigact, nullptr)) {
qDebug() << "UnixSignalWatcher: sigaction: " << ::strerror(errno);
Expand Down

0 comments on commit 05756e5

Please sign in to comment.