Changeset 8565a42 in mainline for uspace/app/taskdump/taskdump.c


Ignore:
Timestamp:
2018-03-02T20:34:50Z (8 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

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

    r3061bc1 r8565a42  
    126126{
    127127        async_sess_t *ksess = async_connect_kbox(task_id);
    128        
     128
    129129        if (!ksess) {
    130130                if (errno == ENOTSUP) {
     
    135135                        return errno;
    136136                }
    137                
     137
    138138                printf("Error connecting\n");
    139139                printf("async_connect_kbox(%" PRIu64 ") -> %s", task_id, str_error_name(errno));
    140140                return errno;
    141141        }
    142        
     142
    143143        errno_t rc = udebug_begin(ksess);
    144144        if (rc != EOK) {
     
    146146                return rc;
    147147        }
    148        
     148
    149149        sess = ksess;
    150150        return 0;
Note: See TracChangeset for help on using the changeset viewer.