We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 41cc02f commit 05756e5Copy full SHA for 05756e5
external/qt-unix-signals/sigwatch.cpp
@@ -108,7 +108,7 @@ void UnixSignalWatcherPrivate::watchForSignal(int signal)
108
struct sigaction sigact;
109
sigact.sa_handler = UnixSignalWatcherPrivate::signalHandler;
110
sigact.sa_flags = 0;
111
- ::sigemptyset(&sigact.sa_mask);
+ sigemptyset(&sigact.sa_mask);
112
sigact.sa_flags |= SA_RESTART;
113
if (::sigaction(signal, &sigact, nullptr)) {
114
qDebug() << "UnixSignalWatcher: sigaction: " << ::strerror(errno);
0 commit comments