Browse Source

dump hidden flag

git-svn-id: https://klish.googlecode.com/svn/trunk@168 0eaa4687-2ee9-07dd-09d9-bcdd2d2dd5fb
Serj Kalichev 13 years ago
parent
commit
b07cb0034d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      clish/param/param_dump.c

+ 2 - 0
clish/param/param_dump.c

@@ -36,6 +36,8 @@ void clish_param_dump(const clish_param_t * this)
 	lub_dump_printf("paramc : %d\n", clish_paramv__get_count(this->paramv));
 	lub_dump_printf("optional : %s\n",
 			this->optional ? "true" : "false");
+	lub_dump_printf("hidden : %s\n",
+			this->hidden ? "true" : "false");
 
 	/* Get each parameter to dump their details */
 	for (i = 0; i < clish_paramv__get_count(this->paramv); i++) {