Thought I fixed that ((null) not a pretty description ;) )

SVN revision: 10071
This commit is contained in:
handyande 2004-05-05 12:35:01 +00:00 committed by handyande
parent b46f5ee456
commit 959b86ab63
1 changed files with 2 additions and 1 deletions

View File

@ -130,7 +130,8 @@ ecore_config_args_display(void)
printf(" %c%c%c --%s\t <%s> %s\n", props->short_opt?'-':' ',
props->short_opt?props->short_opt:' ', props->short_opt?',':' ',
props->long_opt?props->long_opt:props->key,
_ecore_config_short_types[props->type], props->description);
_ecore_config_short_types[props->type],
props->description?props->description:"(no description available)");
props = props->next;
}