Changeset 1433ecda in mainline for uspace/app/taskdump/taskdump.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/app/taskdump/taskdump.c

    r47b2d7e3 r1433ecda  
    158158        task_id = 0;
    159159
    160         --argc; ++argv;
     160        --argc;
     161        ++argv;
    161162
    162163        while (argc > 0) {
     
    165166                        if (arg[1] == 't' && arg[2] == '\0') {
    166167                                /* Task ID */
    167                                 --argc; ++argv;
     168                                --argc;
     169                                ++argv;
    168170                                task_id = strtol(*argv, &err_p, 10);
    169171                                if (*err_p) {
     
    175177                                write_core_file = true;
    176178
    177                                 --argc; ++argv;
     179                                --argc;
     180                                ++argv;
    178181                                core_file_name = *argv;
    179182                        } else {
     
    186189                }
    187190
    188                 --argc; ++argv;
     191                --argc;
     192                ++argv;
    189193        }
    190194
Note: See TracChangeset for help on using the changeset viewer.