Skip to content

Commit

Permalink
[imcc] oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Oct 10, 2014
1 parent 09825bb commit 05eeca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compilers/imcc/symreg.c
Expand Up @@ -868,7 +868,7 @@ mk_const(ARGMOD(imc_info_t * imcc), ARGIN(const char *name), int t)
const_name = (char*)mem_internal_allocate(len + 8 + 1); /* 8 = strlen("fixed_8:") */
strcpy(const_name, "fixed_8:");
strcat(const_name, name);
const_name[len + 7 + 1] = 0;
const_name[len + 8 + 1] = 0;
if (t == 'S') t = 'U';
}
}
Expand Down

0 comments on commit 05eeca5

Please sign in to comment.