Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/search.c

    r16bfcd3 rb7fd2a0  
    105105}
    106106
    107 int search_next_match(search_t *s, match_t *match)
     107errno_t search_next_match(search_t *s, match_t *match)
    108108{
    109109        search_equals_fn eq = s->ops.equals;
    110110       
    111111        wchar_t cur_char;
    112         int rc = EOK;
     112        errno_t rc = EOK;
    113113        while ((rc = s->ops.producer(s->client_data, &cur_char)) == EOK && cur_char > 0) {
    114114                /* Deal with mismatches */
Note: See TracChangeset for help on using the changeset viewer.