Ignore:
Timestamp:
2015-11-02T20:54:19Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8513177
Parents:
3feeab2 (diff), 5265eea4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/stdio/scanf.c

    r3feeab2 rff381a7  
    698698                                                        break;
    699699                                                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;
    702702                                                        break;
    703703                                                case LMOD_z: ;
     
    740740                                                        break;
    741741                                                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;
    744744                                                        break;
    745745                                                case LMOD_z: ;
     
    748748                                                        break;
    749749                                                case LMOD_t: ;
    750                                                         posix_ptrdiff_t *pt = va_arg(arg, posix_ptrdiff_t *);
    751                                                         *pt = (posix_ptrdiff_t) sres;
     750                                                        ptrdiff_t *pt = va_arg(arg, ptrdiff_t *);
     751                                                        *pt = (ptrdiff_t) sres;
    752752                                                        break;
    753753                                                default:
Note: See TracChangeset for help on using the changeset viewer.