Ignore:
File:
1 edited

Legend:

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

    r84239b1 r5a6cc679  
    162162        const char *value = bithenge_string_node_value(node);
    163163        state_printf(state, "\"");
    164         string_iterator_t i = string_iterator(value);
    165         while (!string_iterator_done(&i)) {
     164        for (string_iterator_t i = string_iterator(value); !string_iterator_done(&i); ) {
    166165                wchar_t ch;
    167166                errno_t rc = string_iterator_next(&i, &ch);
Note: See TracChangeset for help on using the changeset viewer.