Browse Source

Fix ptype_dump.c help printf

Serj Kalichev 10 years ago
parent
commit
787bacff77
1 changed files with 1 additions and 1 deletions
  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));