Changeset 1433ecda in mainline for uspace/lib/c/generic/rtld/module.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/rtld/module.c

    r47b2d7e3 r1433ecda  
    9191
    9292        /* Do not relocate twice. */
    93         if (m->relocated) return;
     93        if (m->relocated)
     94                return;
    9495
    9596        module_process_pre_arch(m);
     
    246247
    247248        while (dp->d_tag != DT_NULL) {
    248                 if (dp->d_tag == DT_NEEDED) ++n;
     249                if (dp->d_tag == DT_NEEDED)
     250                        ++n;
    249251                ++dp;
    250252        }
Note: See TracChangeset for help on using the changeset viewer.