Changeset 850fd32 in mainline for uspace/app/bdsh


Ignore:
Timestamp:
2018-03-11T01:21:19Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
84239b1, f0e825d
Parents:
338d54a7
Message:

Fix mischievious semicolons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/util.c

    r338d54a7 r850fd32  
    4545        unsigned int i;
    4646
    47         for (i=0; args[i] != NULL; i++);
     47        i = 0;
     48        while (args[i] != NULL)
     49                i++;
     50
    4851        return i;
    4952}
Note: See TracChangeset for help on using the changeset viewer.