Changes in uspace/lib/usbdev/src/recognise.c [1569a9b:8d2dd7f2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/recognise.c
r1569a9b r8d2dd7f2 88 88 char *str = NULL; \ 89 89 int __rc = asprintf(&str, format, ##__VA_ARGS__); \ 90 if (__rc >= 0) { \ 91 int __rc = usb_add_match_id((match_ids), (score), str); \ 92 if (__rc != EOK) { \ 93 free(str); \ 94 return __rc; \ 95 } \ 96 } else { \ 97 return ENOMEM; \ 90 if (__rc > 0) { \ 91 __rc = usb_add_match_id((match_ids), (score), str); \ 92 } \ 93 if (__rc != EOK) { \ 94 free(str); \ 95 return __rc; \ 98 96 } \ 99 97 } while (0)
Note:
See TracChangeset
for help on using the changeset viewer.