@@ -389,11 +389,11 @@ - (void)streamIsReadyForReading: (OFStream*)stream { OFList *queue = [_readQueues objectForKey: stream]; of_list_object_t *listObject; - OF_ENSURE(queue != nil); + assert(queue != nil); listObject = [queue firstListObject]; if ([listObject->object isKindOfClass: [OFRunLoop_ReadQueueItem class]]) { @@ -612,11 +612,11 @@ } # ifdef OF_HAVE_BLOCKS } # endif } else - OF_ENSURE(0); + assert(0); } #endif - (void)run {