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

    r47b2d7e3 r1433ecda  
    107107        // now handled using capabilities
    108108        if (CAP_HANDLE_RAW(phone) < 0 || CAP_HANDLE_RAW(phone) >= MAX_PHONE)
    109             return;
     109                return;
    110110        connections[CAP_HANDLE_RAW(phone)].server = server;
    111111        connections[CAP_HANDLE_RAW(phone)].proto = proto;
     
    218218                        putchar('(');
    219219                        for (i = 1; i <= oper->argc; ++i) {
    220                                 if (i > 1) printf(", ");
     220                                if (i > 1)
     221                                        printf(", ");
    221222                                val_print(args[i], oper->arg_type[i - 1]);
    222223                        }
     
    315316                if ((display_mask & DM_SYSTEM) != 0) {
    316317                        printf("Registering connection (phone %p, protocol: %s)\n", cphone,
    317                     proto->name);
     318                            proto->name);
    318319                }
    319320
Note: See TracChangeset for help on using the changeset viewer.