Changeset 22d990c in mainline for uspace/app


Ignore:
Timestamp:
2020-01-11T00:36:26Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
06599a1
Parents:
8a74512
Message:

Clean up code

Correcting order of includes. Remove unnecessary new lines. Removing
old function declaration. Typos.

Location:
uspace/app
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/proc/common.h

    r8a74512 r22d990c  
    4444#define STR_JOB_OK      "job-ok"
    4545
    46 #define DUMMY_TASK     "/root/app/tester"
     46#define DUMMY_TASK     "/app/tester"
    4747#define DUMMY_TASK_ARG "proc_dummy_task"
    4848
  • uspace/app/vlaunch/vlaunch.c

    r8a74512 r22d990c  
    7676        int retval;
    7777        rc = task_wait(&wait, NULL, &retval);
    78         if ((rc != EOK)) {
     78        if (rc != EOK) {
    7979                printf("%s: Error retrieving retval from %s (%s)\n", NAME,
    8080                    app, str_error(rc));
Note: See TracChangeset for help on using the changeset viewer.