Changeset 51cc6cef in mainline


Ignore:
Timestamp:
2015-07-05T03:40:26Z (9 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
58d4880
Parents:
bc8bc6e
Message:

libusbdev: always report polling failures

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/devpoll.c

    rbc8bc6e r51cc6cef  
    103103                    data->request_size, &actual_size);
    104104
    105                 if (params->debug > 1) {
    106                         if (rc == EOK) {
     105                if (rc == EOK) {
     106                        if (params->debug > 1) {
    107107                                usb_log_debug(
    108108                                    "Poll%p: received: '%s' (%zuB).\n",
     
    111111                                        actual_size, 16),
    112112                                    actual_size);
    113                         } else {
     113                        }
     114                } else {
    114115                                usb_log_debug(
    115116                                    "Poll%p: polling failed: %s.\n",
    116117                                    data, str_error(rc));
    117                         }
    118118                }
    119119
Note: See TracChangeset for help on using the changeset viewer.