mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Resolve compiler warnings for unused return values
* Fixes #1932 - See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66425#c29 Adding a negation before the function call allows the (void) syntax to work properly.
This commit is contained in:
parent
a0912b057e
commit
6a8b070b0a
4 changed files with 7 additions and 14 deletions
|
@ -256,7 +256,7 @@ void Application::handleUnixSignal(int sig)
|
|||
case SIGINT:
|
||||
case SIGTERM: {
|
||||
char buf = 0;
|
||||
Q_UNUSED(::write(unixSignalSocket[0], &buf, sizeof(buf)));
|
||||
Q_UNUSED(!::write(unixSignalSocket[0], &buf, sizeof(buf)));
|
||||
return;
|
||||
}
|
||||
case SIGHUP:
|
||||
|
@ -268,7 +268,7 @@ void Application::quitBySignal()
|
|||
{
|
||||
m_unixSignalNotifier->setEnabled(false);
|
||||
char buf;
|
||||
Q_UNUSED(::read(unixSignalSocket[1], &buf, sizeof(buf)));
|
||||
Q_UNUSED(!::read(unixSignalSocket[1], &buf, sizeof(buf)));
|
||||
emit quitSignalReceived();
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue