Changeset dc12262 in mainline for uspace/lib
- Timestamp:
- 2017-05-04T22:12:27Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e141281
- Parents:
- 93ad8166
- Location:
- uspace/lib
- Files:
-
- 7 edited
-
c/generic/io/printf_core.c (modified) (5 diffs)
-
c/generic/iplink.c (modified) (1 diff)
-
posix/source/stdio/scanf.c (modified) (1 diff)
-
posix/source/stdlib/strtol.c (modified) (1 diff)
-
posix/source/stdlib/strtold.c (modified) (1 diff)
-
usbhid/src/hiddescriptor.c (modified) (1 diff)
-
usbhid/src/hidpath.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/printf_core.c
r93ad8166 rdc12262 1217 1217 case 'F': 1218 1218 flags |= __PRINTF_FLAG_BIGCHARS; 1219 /* Fall through.*/1219 /* Fallthrough */ 1220 1220 case 'f': 1221 1221 precision = (precision < 0) ? 6 : precision; … … 1224 1224 case 'E': 1225 1225 flags |= __PRINTF_FLAG_BIGCHARS; 1226 /* Fall through.*/1226 /* Fallthrough */ 1227 1227 case 'e': 1228 1228 precision = (precision < 0) ? 6 : precision; … … 1231 1231 case 'G': 1232 1232 flags |= __PRINTF_FLAG_BIGCHARS; 1233 /* Fall through.*/1233 /* Fallthrough */ 1234 1234 case 'g': 1235 1235 return print_double_generic(g, precision, width, flags, ps); … … 1553 1553 /* Pointer */ 1554 1554 flags |= __PRINTF_FLAG_BIGCHARS; 1555 /* Fallthrough */ 1555 1556 case 'p': 1556 1557 flags |= __PRINTF_FLAG_PREFIX; … … 1568 1569 case 'i': 1569 1570 flags |= __PRINTF_FLAG_SIGNED; 1571 /* Fallthrough */ 1570 1572 case 'u': 1571 1573 break; 1572 1574 case 'X': 1573 1575 flags |= __PRINTF_FLAG_BIGCHARS; 1576 /* Fallthrough */ 1574 1577 case 'x': 1575 1578 base = 16; -
uspace/lib/c/generic/iplink.c
r93ad8166 rdc12262 301 301 case IPLINK_EV_CHANGE_ADDR: 302 302 iplink_ev_change_addr(iplink, callid, &call); 303 break; 303 304 default: 304 305 async_answer_0(callid, ENOTSUP); -
uspace/lib/posix/source/stdio/scanf.c
r93ad8166 rdc12262 466 466 case 'S': 467 467 *modifier = LMOD_l; 468 /* fallthrough */468 /* Fallthrough */ 469 469 case 's': 470 470 return 1; 471 471 case 'C': 472 472 *modifier = LMOD_l; 473 /* fallthrough */473 /* Fallthrough */ 474 474 case 'c': 475 475 return 1; -
uspace/lib/posix/source/stdlib/strtol.c
r93ad8166 rdc12262 142 142 :(((uintmax_t) -(min_value + 1)) + 1); 143 143 144 /* fallthrough */144 /* Fallthrough */ 145 145 case '+': 146 146 i++; -
uspace/lib/posix/source/stdlib/strtold.c
r93ad8166 rdc12262 423 423 case '-': 424 424 negative = true; 425 /* fallthrough */425 /* Fallthrough */ 426 426 case '+': 427 427 i++; -
uspace/lib/usbhid/src/hiddescriptor.c
r93ad8166 rdc12262 754 754 case START_DELIMITER_SET: 755 755 report_item->in_delimiter = INSIDE_DELIMITER_SET; 756 /* Fallthrough */ 756 757 case OUTSIDE_DELIMITER_SET: 757 758 extended_usage = ((report_item->usage_page) << 16); -
uspace/lib/usbhid/src/hidpath.c
r93ad8166 rdc12262 259 259 return 1; 260 260 } 261 /* Fallthrough */ 261 262 262 263 /* path is prefix of the report_path */
Note:
See TracChangeset
for help on using the changeset viewer.
