Changeset 84239b1 in mainline for uspace/lib/bithenge/src/compound.c


Ignore:
Timestamp:
2018-03-11T19:39:11Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f3d47c97
Parents:
850fd32
Message:

And there was much fixing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/bithenge/src/compound.c

    r850fd32 r84239b1  
    7070
    7171        /* i ranges from (self->num - 1) to 0 inside the loop. */
    72         for (size_t i = self->num; i--; ) {
     72        size_t i = self->num;
     73        while (i-- != 0) {
    7374                bithenge_node_t *tmp;
    7475                rc = bithenge_transform_apply(self->xforms[i], scope, in,
Note: See TracChangeset for help on using the changeset viewer.