From aabcbdad79d4bd6af0ab32d202e7348250a7c01b Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 10 Jan 2014 16:22:07 +0900 Subject: [PATCH] fix a small bug in a comment --- src/macro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macro.c b/src/macro.c index 0cd38949..b289a956 100644 --- a/src/macro.c +++ b/src/macro.c @@ -25,7 +25,7 @@ new_uniq_sym(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 ic->sym_tbl to keep it uninterned */ + /* don't put the symbol to pic->sym_tbl to keep it uninterned */ if (pic->slen >= pic->scapa) { pic->scapa *= 2; pic->sym_pool = pic_realloc(pic, pic->sym_pool, sizeof(const char *) * pic->scapa);