Changeset 3bacee1 in mainline for uspace/app/mkbd/main.c


Ignore:
Timestamp:
2018-04-12T16:27:17Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3cf22f9
Parents:
76d0981d
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
Message:

Make ccheck-fix again and commit more good files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkbd/main.c

    r76d0981d r3bacee1  
    145145
    146146        usb_hid_report_field_t *field = usb_hid_report_get_sibling(
    147             report, NULL, path, USB_HID_PATH_COMPARE_END
    148             | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
     147            report, NULL, path, USB_HID_PATH_COMPARE_END |
     148            USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
    149149            USB_HID_REPORT_TYPE_INPUT);
    150150
     
    157157
    158158                field = usb_hid_report_get_sibling(
    159                     report, field, path, USB_HID_PATH_COMPARE_END
    160                     | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
     159                    report, field, path, USB_HID_PATH_COMPARE_END |
     160                    USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
    161161                    USB_HID_REPORT_TYPE_INPUT);
    162162        }
     
    228228        if (!sess) {
    229229                printf(NAME ": failed to connect to the device (handle %"
    230                        PRIun "): %s.\n", dev_handle, str_error(errno));
     230                    PRIun "): %s.\n", dev_handle, str_error(errno));
    231231                return errno;
    232232        }
     
    238238        if (rc != EOK) {
    239239                printf(NAME ": failed to get path (handle %"
    240                        PRIun "): %s.\n", dev_handle, str_error(errno));
     240                    PRIun "): %s.\n", dev_handle, str_error(errno));
    241241                return ENOMEM;
    242242        }
Note: See TracChangeset for help on using the changeset viewer.