Ignore:
File:
1 edited

Legend:

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

    ra35b458 r1b20da0  
    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.