summaryrefslogtreecommitdiff
path: root/src/Handle.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Handle.cc')
-rw-r--r--src/Handle.cc2
1 files changed, 1 insertions, 1 deletions
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];