meta: replace bluelib with fx
This commit is contained in:
@@ -52,12 +52,12 @@ void ivy_diag_ctx_write(
|
||||
struct ivy_diag_ctx *ctx, enum ivy_diag_format format,
|
||||
struct ivy_diag_stream *stream)
|
||||
{
|
||||
b_queue_entry *entry = b_queue_first(&ctx->ctx_diags);
|
||||
fx_queue_entry *entry = fx_queue_first(&ctx->ctx_diags);
|
||||
while (entry) {
|
||||
struct ivy_diag *diag
|
||||
= b_unbox(struct ivy_diag, entry, diag_entry);
|
||||
= fx_unbox(struct ivy_diag, entry, diag_entry);
|
||||
diag_write(ctx, diag, format, stream);
|
||||
entry = b_queue_next(entry);
|
||||
entry = fx_queue_next(entry);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ struct ivy_diag *ivy_diag_ctx_create_diag(
|
||||
out->diag_class = diag_class;
|
||||
out->diag_parent = ctx;
|
||||
|
||||
b_queue_push_back(&ctx->ctx_diags, &out->diag_entry);
|
||||
fx_queue_push_back(&ctx->ctx_diags, &out->diag_entry);
|
||||
|
||||
return out;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user