Changes in uspace/drv/vhc/hc.c [daec5e04:0b31409] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/vhc/hc.c

    rdaec5e04 r0b31409  
    3434 */
    3535
     36#include <ipc/ipc.h>
    3637#include <adt/list.h>
    3738#include <bool.h>
     
    8990 */
    9091static void process_transaction_with_outcome(transaction_t * transaction,
    91     int outcome)
     92    usb_transaction_outcome_t outcome)
    9293{
    9394        usb_log_debug2("Transaction " TRANSACTION_FORMAT " done: %s.\n",
    9495            TRANSACTION_PRINTF(*transaction),
    95             str_error(outcome));
     96            usb_str_transaction_outcome(outcome));
    9697       
    9798        transaction->callback(transaction->buffer, transaction->actual_len,
     
    127128                    TRANSACTION_PRINTF(*transaction), ports);
    128129
    129                 int outcome;
     130                usb_transaction_outcome_t outcome;
    130131                outcome = virtdev_send_to_all(transaction);
    131132               
Note: See TracChangeset for help on using the changeset viewer.