Changeset 8f3230e in mainline


Ignore:
Timestamp:
2018-03-26T15:27:00Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ba88ae
Parents:
92cf9a4
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-26 15:21:43)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-26 15:27:00)
Message:

Use standard constants with standard functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/src/stdio.c

    r92cf9a4 r8f3230e  
    343343int vsprintf(char *s, const char *restrict format, va_list ap)
    344344{
    345         return vsnprintf(s, STR_NO_LIMIT, format, ap);
     345        return vsnprintf(s, INT_MAX, format, ap);
    346346}
    347347
Note: See TracChangeset for help on using the changeset viewer.