diff --git a/method.c b/method.c index 4777757..42a3066 100644 --- a/method.c +++ b/method.c @@ -58,8 +58,8 @@ void ListMethods(void) for(i=0; imethodList->len; i++) { Method *method = g_ptr_array_index(Closure->methodList, i); - strncpy(name, method->name, 5); - PrintCLI("%s -- %s\n",name,method->description); + strncpy(name, method->name, 4); + PrintCLI("%s, enable with -m%s: %s\n",name,name,method->description); } }