Skip to content

Commit

Permalink
Fix the __linux__ ifdef. Needed to be all lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
beanpole135 committed Jan 3, 2017
1 parent 80d5647 commit 9569c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt5/desktop-utils/lumina-archiver/imgDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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...
Expand Down

0 comments on commit 9569c05

Please sign in to comment.