Changeset 904b1bc in mainline for boot/generic/src/inflate.c


Ignore:
Timestamp:
2018-05-22T10:36:58Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a4eb3ba2
Parents:
4f8772d4
git-author:
Jiri Svoboda <jiri@…> (2018-05-21 17:36:30)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-22 10:36:58)
Message:

Fix remaining ccheck issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/src/inflate.c

    r4f8772d4 r904b1bc  
    319319    uint16_t *symbol)
    320320{
    321         uint16_t code = 0; /* Decoded bits */
    322         size_t first = 0;  /* First code of the given length */
    323         size_t index = 0;  /* Index of the first code of the given length
    324                               in the symbol table */
     321        /* Decoded bits */
     322        uint16_t code = 0;
     323
     324        /* First code of the given length */
     325        size_t first = 0;
     326
     327        /*
     328         * Index of the first code of the given length
     329         * in the symbol table
     330         */
     331        size_t index = 0;
    325332
    326333        size_t len;  /* Current number of bits in the code */
Note: See TracChangeset for help on using the changeset viewer.