From 7900b9cf6315be87a6c6f4d57b35aa73df1b8f4d Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Sun, 31 Jul 2022 14:31:04 +0200 Subject: [PATCH] :art: Clean indent --- src/emit/emit.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; } -- 2.43.0