From: fennecdjay Date: Sun, 31 Jul 2022 12:31:04 +0000 (+0200) Subject: :art: Clean indent X-Git-Tag: nightly~264^2~62 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=7900b9cf6315be87a6c6f4d57b35aa73df1b8f4d;p=gwion.git :art: Clean indent --- diff --git a/src/emit/emit.c b/src/emit/emit.c index 297e8978..a9a43016 100644 --- a/src/emit/emit.c +++ b/src/emit/emit.c @@ -1433,11 +1433,11 @@ static INSTR(fptr_call) { static inline m_bool push_func_code(const Emitter emit, const Func f) { if (!vector_size(&emit->code->instr)) { if(fflag(f, fflag_tmpl)) { - // we are sporking a template - // assume static call for now - const Instr instr = emit_add_instr(emit, RegSetImm); - instr->m_val = (m_uint)f->code; - instr->m_val2 = (m_uint)-SZ_INT; + // we are sporking a template + // assume static call for now + const Instr instr = emit_add_instr(emit, RegSetImm); + instr->m_val = (m_uint)f->code; + instr->m_val2 = (m_uint)-SZ_INT; } return GW_OK; }