Changeset c6c389ed in mainline for uspace/srv/devman/util.c


Ignore:
Timestamp:
2010-10-23T16:08:18Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
791f58c
Parents:
58b833c
Message:

Yet more cstyle in devman.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/util.c

    r58b833c rc6c389ed  
    6161char *get_path_elem_end(char *path)
    6262{
    63         while (0 != *path && '/' != *path)
     63        while (*path != '\0' && *path != '/')
    6464                path++;
    6565        return path;
Note: See TracChangeset for help on using the changeset viewer.