From: Jérémie Astor Date: Tue, 5 May 2020 12:53:57 +0000 (+0200) Subject: :art: Remove extraneous space X-Git-Tag: nightly~1678 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=5e05b34ef0589bd331cff1eb3add7a4a325f4592;p=gwion.git :art: Remove extraneous space --- diff --git a/src/vm/vm.c b/src/vm/vm.c index 13b0d0ba..39c43753 100644 --- a/src/vm/vm.c +++ b/src/vm/vm.c @@ -121,7 +121,7 @@ ANN static inline void vm_ugen_init(const VM* vm) { #endif ANN static inline m_bool overflow_(const m_bit* mem, const VM_Shred c) { - return mem > (((m_bit*)c + sizeof(struct VM_Shred_) + SIZEOF_REG) + (SIZEOF_MEM) - (MEM_STEP*16)); + return mem > (((m_bit*)c + sizeof(struct VM_Shred_) + SIZEOF_REG) + (SIZEOF_MEM) - (MEM_STEP*16)); } ANN static inline VM_Shred init_spork_shred(const VM_Shred shred, const VM_Code code) {