From dddd70da94ca1a5b3ba91a966322c3e6a41520e2 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 3 Jan 2017 12:27:45 -0500 Subject: Fix the __linux__ ifdef. Needed to be all lowercase. --- src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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... -- cgit