fixed the wrong buggy argument to hcl_decode() in main.c

This commit is contained in:
hyung-hwan 2018-02-13 16:19:16 +00:00
parent f802bec44a
commit bcc616acde

View File

@ -1656,7 +1656,7 @@ int main (int argc, char* argv[])
} }
else if (xtn->reader_istty) else if (xtn->reader_istty)
{ {
hcl_decode (hcl, code_offset, hcl->code.bc.len - code_offset); hcl_decode (hcl, code_offset, hcl->code.bc.len);
HCL_LOG0 (hcl, HCL_LOG_MNEMONIC, "------------------------------------------\n"); HCL_LOG0 (hcl, HCL_LOG_MNEMONIC, "------------------------------------------\n");
g_hcl = hcl; g_hcl = hcl;
//setup_tick (); //setup_tick ();