summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/hosting/server/client-test.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/hosting/server/client-test.hpp')
-rw-r--r--sca-cpp/trunk/hosting/server/client-test.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-cpp/trunk/hosting/server/client-test.hpp b/sca-cpp/trunk/hosting/server/client-test.hpp
index 9d887e0558..7620326421 100644
--- a/sca-cpp/trunk/hosting/server/client-test.hpp
+++ b/sca-cpp/trunk/hosting/server/client-test.hpp
@@ -221,7 +221,7 @@ const list<future<bool> > startPost(const worker& w, const int threads, const bl
}
const bool checkPost(const list<future<bool> >& r) {
- if (isNil(r))
+ if (isNull(r))
return true;
assert(car(r) == true);
return checkPost(cdr(r));
@@ -279,7 +279,7 @@ const list<pid_t> startPost(const int procs, const blambda& l) {
}
const bool checkPost(const list<pid_t>& r) {
- if (isNil(r))
+ if (isNull(r))
return true;
int status;
waitpid(car(r), &status, 0);