Fix a typo in a variable name (#1835)
There was a typo in a variable name causing the build to fail when mem-stats was turned on. JerryScript-DCO-1.0-Signed-off-by: Daniel Balla dballa@inf.u-szeged.hu
This commit is contained in:
committed by
László Langó
parent
d48c65d258
commit
ffdf151387
@@ -319,7 +319,7 @@ jerry_debugger_process_message (uint8_t *recv_buffer_p, /**< pointer the the rec
|
||||
}
|
||||
|
||||
#ifdef JMEM_STATS
|
||||
jmem_stats_free_byte_code_bytes (((size_t) bytecode_p->size) << JMEM_ALIGNMENT_LOG);
|
||||
jmem_stats_free_byte_code_bytes (((size_t) byte_code_free_p->size) << JMEM_ALIGNMENT_LOG);
|
||||
#endif /* JMEM_STATS */
|
||||
|
||||
jmem_heap_free_block (byte_code_free_p,
|
||||
|
||||
Reference in New Issue
Block a user