aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Mantellini <angelo.mantellini@irt-systemx.fr>2018-01-22 15:57:57 +0100
committerAngelo Mantellini <angelo.mantellini@irt-systemx.fr>2018-01-22 16:26:00 +0100
commit2f4dbb6aea63bcd289d35dca65c5a4037549bdd1 (patch)
treea5f81071aaf3daf4b2fb073300bface0fe4ab19a
parent49ff69a0c3f33b03b2ebaac9098d6e8c88a5e8b6 (diff)
correct __ANDROID__ define
Change-Id: If05aca95913b0189d232a28eee3afcb205a2b3a2 Signed-off-by: Angelo Mantellini <angelo.mantellini@irt-systemx.fr>
-rw-r--r--longbow/src/LongBow/longBow_TestCase.c2
1 files changed, 1 insertions, 1 deletions
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);