From ff384978c258a5f37fd7f72406d6e32ad1fd0912 Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Sat, 17 Feb 2024 06:06:05 +0100 Subject: [PATCH] :art: boolify gwi_gack --- include/import/internals.h | 2 +- src/import/import_special.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/import/internals.h b/include/import/internals.h index 63f0b859..45bf1624 100644 --- a/include/import/internals.h +++ b/include/import/internals.h @@ -43,5 +43,5 @@ ANN Exp* make_exp(const Gwi gwi, const m_str type, const m_str name); ANN void gwi_reset(const Gwi gwi); ANN VM * gwi_vm(const Gwi); -ANN m_bool gwi_gack(const Gwi gwi, const Type type, const f_gack d); +ANN bool gwi_gack(const Gwi gwi, const Type type, const f_gack d); #endif diff --git a/src/import/import_special.c b/src/import/import_special.c index ca85ced4..1af03345 100644 --- a/src/import/import_special.c +++ b/src/import/import_special.c @@ -51,7 +51,7 @@ ANN bool mk_gack(MemPool p, const Type type, const f_gack d) { return true; } -ANN m_bool gwi_gack(const Gwi gwi, const Type type, const f_gack d) { +ANN bool gwi_gack(const Gwi gwi, const Type type, const f_gack d) { return mk_gack(gwi->gwion->mp, type, d); } -- 2.43.0