j
k
j a
j l
{ cmd_tbl_t *c; if (argc < 2) { cmd_usage(cmdtp); return 1; }
{ cmd_tbl_t *c;
cmd_usage(cmdtp);
return 1;
Wolfgang recently made cmd_usage() return 1 so the above could be simplified to: if (argc < 2) return cmd_usage(cmdtp);
Best, Peter
Back to the thread
Back to the list