Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseargs.cfa

    r6f94958 rb7664a0  
    148148        if(hwidth <= 0) hwidth = max;
    149149
    150         char sname[4] = { ' ', ' ', ' ', '\0' };
    151         if(sn != '\0') {
    152                 sname[0] = '-';
    153                 sname[1] = sn;
    154                 sname[2] = ',';
    155         }
    156 
    157         fprintf(out, "  %s --%-*s   %.*s\n", sname, width, ln, hwidth, help);
     150        fprintf(out, "  -%c, --%-*s   %.*s\n", sn, width, ln, hwidth, help);
    158151        for() {
    159152                help += min(strlen(help), hwidth);
Note: See TracChangeset for help on using the changeset viewer.