diff options
author | Ken Moore <ken@ixsystems.com> | 2017-01-03 12:27:45 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-01-03 12:27:45 -0500 |
commit | dddd70da94ca1a5b3ba91a966322c3e6a41520e2 (patch) | |
tree | 940be3dd761dfe0914a921ec08a6c1b43396a9d1 | |
parent | Re-sync the translation files with the sources. (diff) | |
download | lumina-dddd70da94ca1a5b3ba91a966322c3e6a41520e2.tar.gz lumina-dddd70da94ca1a5b3ba91a966322c3e6a41520e2.tar.bz2 lumina-dddd70da94ca1a5b3ba91a966322c3e6a41520e2.zip |
Fix the __linux__ ifdef. Needed to be all lowercase.
-rw-r--r-- | src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp b/src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp index 3c330479..413c5fad 100644 --- a/src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp @@ -133,7 +133,7 @@ void imgDialog::getProcStatus(){ if(pidlist.isEmpty()){ return; } int pid = pidlist.first().simplified().toInt(); //just use the first pid - the pgrep should be detailed enough to only match one //qDebug() << "Sending signal to show status on PID:" << pid; -#ifndef __Linux__ +#ifndef __linux__ ::kill(pid, SIGINFO); //On BSD systems, the INFO signal is used to poke dd for status updates #else //LINUX systems do not even have a SIGINFO defined - need to block this off with defines... |