libcgrouptest: Fix the cgroup_dbg macro
On compiling with CGROUP_DEBUG enabled, compile was failing.
libcgrouptest01.c: In function ‘main’:
libcgrouptest01.c:57: error: expected ‘)’ before ‘...’ token
libcgrouptest01.c:64: error: expected ‘)’ before ‘...’ token
libcgrouptest01.c:68: error: expected ‘)’ before ‘...’ token
make[2]: *** [libcgrouptest01.o] Error 1
Fix this error.
Signed-off-by: Dhaval Giani <dhaval@linux.vnet.ibm.com>
pid_t cgrouptest_gettid();
#ifdef CGROUP_DEBUG
-#define cgroup_dbg(p...) printf(p...)
+#define cgroup_dbg(p...) printf(p)
#else
#define cgroup_dbg(p...) do {} while (0);
#endif