소스 검색

Fix ptype_dump.c help printf

Serj Kalichev 10 년 전
부모
커밋
787bacff77
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      clish/ptype/ptype_dump.c

+ 1 - 1
clish/ptype/ptype_dump.c

@@ -12,7 +12,7 @@ void clish_ptype_dump(clish_ptype_t * this)
 	lub_dump_printf("ptype(%p)\n", this);
 	lub_dump_indent();
 	lub_dump_printf("name       : %s\n", clish_ptype__get_name(this));
-	lub_dump_printf("text       : %s\n", clish_ptype__get_text(this));
+	lub_dump_printf("text       : %s\n", LUB_DUMP_STR(clish_ptype__get_text(this)));
 	lub_dump_printf("pattern    : %s\n", LUB_DUMP_STR(this->pattern));
 	lub_dump_printf("method     : %s\n",
 		clish_ptype_method__get_name(this->method));