Changeset d6c98451 in mainline for uspace/lib/posix/source/stdio/scanf.c
- Timestamp:
- 2015-09-20T11:12:33Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fbf4dc1
- Parents:
- 8a45707d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio/scanf.c
r8a45707d rd6c98451 698 698 break; 699 699 case LMOD_j: ; 700 posix_uintmax_t *pj = va_arg(arg, posix_uintmax_t *);701 *pj = ( posix_uintmax_t) ures;700 uintmax_t *pj = va_arg(arg, uintmax_t *); 701 *pj = (uintmax_t) ures; 702 702 break; 703 703 case LMOD_z: ; … … 740 740 break; 741 741 case LMOD_j: ; 742 posix_intmax_t *pj = va_arg(arg, posix_intmax_t *);743 *pj = ( posix_intmax_t) sres;742 intmax_t *pj = va_arg(arg, intmax_t *); 743 *pj = (intmax_t) sres; 744 744 break; 745 745 case LMOD_z: ;
Note:
See TracChangeset
for help on using the changeset viewer.