Ignore:
File:
1 edited

Legend:

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

    rfeeac0d r7feb86e6  
    105105        char *ipp;
    106106        size_t sz;
     107        tag_t *tag;
    107108        char *newp;
    108109
     
    127128        /* Adjust tags. */
    128129
    129         list_foreach(sh->tags, link, tag_t, tag) {
     130        list_foreach(sh->tags, link) {
     131                tag = list_get_instance(link, tag_t, link);
     132
    130133                if (tag->b_off > pos->b_off)
    131134                        tag->b_off += sz;
     
    151154        char *spp;
    152155        size_t sz;
     156        tag_t *tag;
    153157        char *newp;
    154158        size_t shrink_size;
     
    161165
    162166        /* Adjust tags. */
    163         list_foreach(sh->tags, link, tag_t, tag) {
     167        list_foreach(sh->tags, link) {
     168                tag = list_get_instance(link, tag_t, link);
     169
    164170                if (tag->b_off >= epos->b_off)
    165171                        tag->b_off -= sz;
Note: See TracChangeset for help on using the changeset viewer.