[bugfix] log10 must not be given 0
This commit is contained in:
parent
b7f0f3dfb3
commit
573ba79782
|
@ -199,7 +199,7 @@ pic_macroexpand(pic_state *pic, pic_value obj)
|
||||||
static pic_sym
|
static pic_sym
|
||||||
new_uniq_sym(pic_state *pic, pic_sym base)
|
new_uniq_sym(pic_state *pic, pic_sym base)
|
||||||
{
|
{
|
||||||
int s = pic->uniq_sym_count++;
|
int s = ++pic->uniq_sym_count;
|
||||||
char *str;
|
char *str;
|
||||||
pic_sym uniq;
|
pic_sym uniq;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue