base-pistachio: Avoid warnings.

Avoid warnings in 'base-pistachio/src/core/platform_pd.cc'
and 'base-pistachio/src/core/platform_thread.cc'.

Fixes #479.
This commit is contained in:
Martin Stein 2012-11-13 12:54:39 +01:00 committed by Norman Feske
parent fb216f370b
commit 4794e97d80
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ using namespace Genode;
static const bool verbose = false;
#define PT_DBG(args...) if (verbose) PDBG(args); else {}
#define PT_DBG(args...) if (verbose) { PDBG(args); } else { }
/**************************

View File

@ -36,7 +36,7 @@ using namespace Pistachio;
static const bool verbose = false;
static const bool verbose2 = true;
#define PT_DBG(args...) if (verbose) PDBG(args); else {}
#define PT_DBG(args...) if (verbose) { PDBG(args); } else { }
void Platform_thread::affinity(unsigned int cpu_no)