From 600e7af66ad53f83fe61a907161e8b295603b83e Mon Sep 17 00:00:00 2001 From: Pixel Date: Sun, 11 Dec 2011 23:37:19 -0800 Subject: Introducing EAssert for 'Execution Assert', which won't stop the application, and will replace a bunch of RAssert around the code. --- src/Handle.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Handle.cc') diff --git a/src/Handle.cc b/src/Handle.cc index f3444d6..dacd30d 100644 --- a/src/Handle.cc +++ b/src/Handle.cc @@ -241,7 +241,7 @@ static int eioDone(eio_req * req) { int Balau::FileSystem::mkdir(const char * path) throw (GeneralException) { cbResults_t cbResults; eio_req * r = eio_mkdir(path, 0755, 0, eioDone, &cbResults); - RAssert(r != NULL, "eio_mkdir returned a NULL eio_req"); + EAssert(r != NULL, "eio_mkdir returned a NULL eio_req"); Task::yield(&cbResults.evt); char str[4096]; -- cgit v1.2.3