From f2c9fcf5f18fcf008dbb8cea50acfc5370eab83d Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Fri, 24 Jan 2014 10:12:41 +0000 Subject: [PATCH] a small ecore_getopt bugfix --- src/lib/ecore/ecore_getopt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore/ecore_getopt.c b/src/lib/ecore/ecore_getopt.c index 7a1505f4c2..8c978f1ec6 100644 --- a/src/lib/ecore/ecore_getopt.c +++ b/src/lib/ecore/ecore_getopt.c @@ -641,7 +641,8 @@ _ecore_getopt_help_desc_categories(FILE *fp, /* do not print available categories if none available */ for (; !_ecore_getopt_desc_is_sentinel(desc); desc++) - if (desc->action == ECORE_GETOPT_ACTION_CATEGORY) goto hascat; + if (desc->action == ECORE_GETOPT_ACTION_CATEGORY && desc->longname) + goto hascat; return _ecore_getopt_help_line(fp, base, total, used, _("No categories available."),