Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhid/src/hidpath.c

    r5a6cc679 rb7fd2a0  
    173173void usb_hid_print_usage_path(usb_hid_report_path_t *path)
    174174{
    175         usb_log_debug("USAGE_PATH FOR RId(%d):", path->report_id);
    176         usb_log_debug("\tLENGTH: %d", path->depth);
     175        usb_log_debug("USAGE_PATH FOR RId(%d):\n", path->report_id);
     176        usb_log_debug("\tLENGTH: %d\n", path->depth);
    177177
    178178        list_foreach(path->items, rpath_items_link,
    179179            usb_hid_report_usage_path_t, path_item) {
    180180
    181                 usb_log_debug("\tUSAGE_PAGE: %X", path_item->usage_page);
    182                 usb_log_debug("\tUSAGE: %X", path_item->usage);
    183                 usb_log_debug("\tFLAGS: %d", path_item->flags);
     181                usb_log_debug("\tUSAGE_PAGE: %X\n", path_item->usage_page);
     182                usb_log_debug("\tUSAGE: %X\n", path_item->usage);
     183                usb_log_debug("\tFLAGS: %d\n", path_item->flags);
    184184        }
    185185}
Note: See TracChangeset for help on using the changeset viewer.