From: Angelo Mantellini Date: Mon, 22 Jan 2018 14:57:57 +0000 (+0100) Subject: correct __ANDROID__ define X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=2f4dbb6aea63bcd289d35dca65c5a4037549bdd1;p=cicn.git correct __ANDROID__ define Change-Id: If05aca95913b0189d232a28eee3afcb205a2b3a2 Signed-off-by: Angelo Mantellini --- diff --git a/longbow/src/LongBow/longBow_TestCase.c b/longbow/src/LongBow/longBow_TestCase.c index ca506ae8..3b487905 100644 --- a/longbow/src/LongBow/longBow_TestCase.c +++ b/longbow/src/LongBow/longBow_TestCase.c @@ -475,7 +475,7 @@ _longBowTestCase_RunForked(LongBowTestCase *testCase) // results of the test that was run in a separate process. int waitStatus; struct rusage rusage; -#ifndef _ANDROID_ +#ifndef __ANDROID__ wait3(&waitStatus, 0, &rusage); #else wait4(-1, &waitStatus, 0, &rusage);