Changes in uspace/lib/posix/source/stdio/scanf.c [6b646dc:fbf4dc1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio/scanf.c
r6b646dc rfbf4dc1 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: ; … … 748 748 break; 749 749 case LMOD_t: ; 750 p osix_ptrdiff_t *pt = va_arg(arg, posix_ptrdiff_t *);751 *pt = (p osix_ptrdiff_t) sres;750 ptrdiff_t *pt = va_arg(arg, ptrdiff_t *); 751 *pt = (ptrdiff_t) sres; 752 752 break; 753 753 default:
Note:
See TracChangeset
for help on using the changeset viewer.