Changeset 58e4d85 in mainline for uspace/app/trace/trace.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
08d4ea2
Parents:
3b47db6
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:53)
Message:

Change (rc != 0) to (rc != EOK).

File:
1 edited

Legend:

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

    r3b47db6 r58e4d85  
    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.