small comment fix

This commit is contained in:
Yuichi Nishiwaki 2014-02-13 13:52:11 +09:00
parent a5f93fbd30
commit 38bb76808b
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ pic_gensym(pic_state *pic, pic_sym base)
str = (char *)pic_alloc(pic, strlen(pic_symbol_name(pic, base)) + (int)log10(s) + 3);
sprintf(str, "%s@%d", pic_symbol_name(pic, base), s);
/* don't put the symbol to pic->sym_tbl to keep it uninterned */
/* don't put the symbol to pic->syms to keep it uninterned */
uniq = pic->sym_cnt++;
xh_put_int(pic->sym_names, uniq, (long)str);