From: fennecdjay Date: Wed, 9 Oct 2019 20:56:38 +0000 (+0200) Subject: :art: Use spid is const X-Git-Tag: nightly~2198^2~52 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=fc83bfbb981618d6c2b7d3a36d3ba95f0cc3f0ce;p=gwion.git :art: Use spid is const --- diff --git a/src/lib/import.c b/src/lib/import.c index 756c2c45..78912a79 100644 --- a/src/lib/import.c +++ b/src/lib/import.c @@ -723,7 +723,7 @@ ANN void gwi_specialid(const Gwi gwi, const m_str id, const SpecialId spid) { a->ck = spid->ck; a->exec = spid->exec; a->em = spid->em; - a->const = spi->is_const; + a->is_const = spid->is_const; map_set(&gwi->gwion->data->id, (vtype)insert_symbol(gwi->gwion->st, id), (vtype)a); gwi_reserve(gwi, id); }