Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/printf/printf.c

    ra35b458 reb748a0  
    127127
    128128        /* Count the arguments */
    129         for (argc = 0; argv[argc] != NULL; argc ++);
     129        argc = 0;
     130        while (argv[argc] != NULL)
     131                argc++;
    130132
    131133        if (argc < 2) {
Note: See TracChangeset for help on using the changeset viewer.