From: Jérémie Astor Date: Mon, 9 Dec 2019 21:10:33 +0000 (+0100) Subject: :art: Fix typo X-Git-Tag: nightly~1999 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=3c9915750e999072eed5ed6de51f63822e5c5bf3;p=gwion.git :art: Fix typo --- diff --git a/src/oo/type.c b/src/oo/type.c index 8f47596f..f69a53d0 100644 --- a/src/oo/type.c +++ b/src/oo/type.c @@ -7,7 +7,7 @@ #include "gwion.h" #include "tuple.h" -ANN static inline m_bool freeable(const Type t) { +ANN static inline m_bool freeable(const Type a) { return !GET_FLAG(a, nonnull) && GET_FLAG(a, template) || GET_FLAG(a, global); }