Changeset a53ed3a in mainline for uspace/app/trace/trace.c


Ignore:
Timestamp:
2018-01-13T03:15:30Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
36df27eb, 50f19b7
Parents:
b7fd2a0
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:15:24)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:15:30)
Message:

Change (rc != 0) to (rc != EOK), where appropriate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/trace.c

    rb7fd2a0 ra53ed3a  
    131131         */
    132132        rc = loader_run(task_ldr);
    133         if (rc != 0) {
     133        if (rc != EOK) {
    134134                printf("Error running program\n");
    135135                exit(1);
Note: See TracChangeset for help on using the changeset viewer.