mirror of https://github.com/BOINC/boinc.git
lib: Fix build break on Linux when building with --enable-debug
This commit is contained in:
parent
0734238709
commit
68f0492d69
|
@ -49,6 +49,10 @@ using std::vector;
|
|||
|
||||
//#define DEBUG
|
||||
|
||||
#ifdef DEBUG
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
static void get_descendants_aux(PROC_MAP& pm, int pid, vector<int>& pids) {
|
||||
PROC_MAP::iterator i = pm.find(pid);
|
||||
if (i == pm.end()) return;
|
||||
|
|
Loading…
Reference in New Issue