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/arch/mips32/src/stacktrace.c

    r47b2d7e3 r1433ecda  
    4343bool stacktrace_fp_valid(stacktrace_t *st, uintptr_t fp)
    4444{
    45         (void) st; (void) fp;
     45        (void) st;
     46        (void) fp;
    4647        return false;
    4748}
     
    4950errno_t stacktrace_fp_prev(stacktrace_t *st, uintptr_t fp, uintptr_t *prev)
    5051{
    51         (void) st; (void) fp; (void) prev;
     52        (void) st;
     53        (void) fp;
     54        (void) prev;
    5255        return ENOTSUP;
    5356}
     
    5558errno_t stacktrace_ra_get(stacktrace_t *st, uintptr_t fp, uintptr_t *ra)
    5659{
    57         (void) st; (void) fp; (void) ra;
     60        (void) st;
     61        (void) fp;
     62        (void) ra;
    5863        return ENOTSUP;
    5964}
Note: See TracChangeset for help on using the changeset viewer.