diff --git a/utils/utils.c b/utils/utils.c index e11ab15e..c7ed708a 100644 --- a/utils/utils.c +++ b/utils/utils.c @@ -28,6 +28,9 @@ void _show_options(int count, OptionInfo *options) { int i; for (i = 0; i < count; i++) { + if (NULL == options[i].name) + continue; + mpp_log("-%s %-16s\t%s\n", options[i].name, options[i].argname, options[i].help); }