Ignore:
File:
1 edited

Legend:

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

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