[bugfix] get rid of a comma
This commit is contained in:
		
							parent
							
								
									c59d8f601b
								
							
						
					
					
						commit
						b7f0f3dfb3
					
				|  | @ -203,7 +203,7 @@ new_uniq_sym(pic_state *pic, pic_sym base) | ||||||
|   char *str; |   char *str; | ||||||
|   pic_sym uniq; |   pic_sym uniq; | ||||||
| 
 | 
 | ||||||
|   str = (char *)pic_alloc(pic, strlen(pic_symbol_name(pic, base)), + (int)log10(s) + 2); |   str = (char *)pic_alloc(pic, strlen(pic_symbol_name(pic, base)) + (int)log10(s) + 2); | ||||||
|   sprintf(str, "%s@%d", pic_symbol_name(pic, base), s); |   sprintf(str, "%s@%d", pic_symbol_name(pic, base), s); | ||||||
|   uniq = pic_intern_cstr(pic, str); |   uniq = pic_intern_cstr(pic, str); | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 Yuichi Nishiwaki
						Yuichi Nishiwaki